| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 37841 | YHBZ | 龟兔赛跑 | C++ | Runtime Error | 0 | 0 MS | 244 KB | 227 | 2022-04-22 20:20:01 |
#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<<int(t * x / (y - x) * y); return 0; }