用户输出
701359824
系统信息
Exited with return code 0
编号 | 题目 | 状态 | 分数 | 总时间 | 内存 | 代码 / 答案文件 | 提交者 | 提交时间 |
---|---|---|---|---|---|---|---|---|
#47994 | #1254. 含金量 | Accepted | 100 | 40 ms | 248 K | C++ 17 / 682 B | Komeiji Koishi | 2021-05-10 14:58:49 |
#include <bits/stdc++.h>
using namespace std;
inline __int128 read() {
__int128 x = 0, f = 1;
char ch = getchar();
while (ch < '0' || ch > '9') {
if (ch == '-')
f = -1;
ch = getchar();
}
while (ch >= '0' && ch <= '9') {
x = x * 10 + ch - '0';
ch = getchar();
}
return x * f;
}
inline void print(__int128 x) {
if (x < 0) {
putchar('-');
x = -x;
}
if (x > 9)
print(x / 10);
putchar(x % 10 + '0');
}
int main() {
__int128 x, y, z;
x = read();
y = read();
z = read();
__int128 l = 0, r = 1000000000000000005;
while (l < r - 1) {
__int128 m = (l + r) >> 1;
if (x * m < y * z)
l = m;
else
r = m;
}
print(l);
return 0;
}
用户输出
701359824
系统信息
Exited with return code 0
用户输出
213872325
系统信息
Exited with return code 0
用户输出
315504921
系统信息
Exited with return code 0
用户输出
1033006778
系统信息
Exited with return code 0
用户输出
5039106
系统信息
Exited with return code 0
用户输出
74416936
系统信息
Exited with return code 0
用户输出
699713018
系统信息
Exited with return code 0
用户输出
34225419
系统信息
Exited with return code 0
用户输出
1190229587
系统信息
Exited with return code 0
用户输出
1793349575
系统信息
Exited with return code 0
用户输出
592816939
系统信息
Exited with return code 0
用户输出
614742410
系统信息
Exited with return code 0
用户输出
2608077089
系统信息
Exited with return code 0
用户输出
336562496
系统信息
Exited with return code 0
用户输出
262790959
系统信息
Exited with return code 0
用户输出
1135977065
系统信息
Exited with return code 0
用户输出
483614251
系统信息
Exited with return code 0
用户输出
876710487
系统信息
Exited with return code 0
用户输出
2592856979
系统信息
Exited with return code 0