| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 37835 | YHBZ | 龟兔赛跑 | C++ | Wrong Answer | 0 | 0 MS | 252 KB | 229 | 2022-04-22 20:14:54 |
#include <iostream> using namespace std; int main() { /*freopen("run.in", "r", stdin); freopen("run.out", "w", stdout);*/ int x, y, t; cin>>x>>y>>t; cout<<t * x / (y - x) * y; return 0; }