Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
4619 张然正 大象喝水 C++ 解答错误 0 MS 240 KB 317 2023-01-12 15:54:40

Tests(0/1):


#include <iostream> using namespace std; int main() { int h, r; cin >> h >> r; int result = 20 / (3 * r * h); int yushu = 20 % (3 * r * h); if (yushu != 0) { cout << (result + 1) << endl; } else { cout << result << endl; } return 0; }


测评信息: