用户输出
7219
系统信息
Exited with return code 0
编号 | 题目 | 状态 | 分数 | 总时间 | 内存 | 代码 / 答案文件 | 提交者 | 提交时间 |
---|---|---|---|---|---|---|---|---|
#49001 | #1254. 含金量 | Accepted | 100 | 42 ms | 340 K | C++ 11 / 170 B | paul0917 | 2021-05-20 1:13:49 |
#include <iostream>
#include <cmath>
using namespace std;
int main() {
int x, y, z;
cin >> x >> y >> z;
cout << (y * z - 1) / x;
return 0;
}