Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
37829 | YHBZ | 龟兔赛跑 | C++ | 运行出错 | 0 | 0 MS | 248 KB | 359 | 2022-04-22 19:29:04 |
#include <iostream> using namespace std; int main() { /*freopen("run.in", "r", stdin); freopen("run.out", "w", stdout);*/ int x, y, t; scanf("%d,%d,%d", &x, &y, &t); for (int i = t * x; true; ++i) { if (i / x > (i + t * y) / y) { cout<<i - 1; break; } } return 0; }