| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 74625 | 杨竣周 | 龟兔赛跑 | C++ | Accepted | 100 | 0 MS | 252 KB | 133 | 2023-05-27 16:53:34 |
#include<bits/stdc++.h> using namespace std; int x,y,t; int main(){ cin>>x>>y>>t; cout<<floor(t*x*y*1.0/(y-x)); return 0; }