用户输出
7219
系统信息
Exited with return code 0
编号 | 题目 | 状态 | 分数 | 总时间 | 内存 | 代码 / 答案文件 | 提交者 | 提交时间 |
---|---|---|---|---|---|---|---|---|
#81574 | #1254. 含金量 | Accepted | 100 | 48 ms | 384 K | C++ 11 (Clang) / 213 B | 15291309895 | 2022-11-19 23:35:26 |
#include <iostream>
#include <cmath>
using namespace std;
int x, y, z;
int main() {
cin >> x >> y >> z;
if (y * z % x == 0)
cout << ceil(y * z / x) - 1;
else
cout << y * z / x;
return 0;
}