用户输出
7219
系统信息
Exited with return code 0
编号 | 题目 | 状态 | 分数 | 总时间 | 内存 | 代码 / 答案文件 | 提交者 | 提交时间 |
---|---|---|---|---|---|---|---|---|
#48043 | #1254. 含金量 | Accepted | 100 | 56 ms | 416 K | C++ 17 / 235 B | Komeiji Koishi | 2021-05-10 19:50:21 |
#include <iostream>
// Let's go. Let's go to the party, if you can feel the magic.
using namespace std;
typedef long long ll;
int main() {
ll x, y, z;
cin >> x >> y >> z;
cout << (y * z - 1) / x;
return 0;
}