| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 19158 | 郑奚桐 | 龟兔赛跑 | C++ | Accepted | 100 | 0 MS | 248 KB | 189 | 2021-05-08 19:48:58 |
#include<bits/stdc++.h> using namespace std; int main(){ int x,y,t,u; double z; cin>>x>>y>>t; u=x*t; z=1.0*u/(y-x); cout<<(int)(z*y)<<endl; return 0; }