| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 19315 | 杨竣周 | 龟兔赛跑 | C++ | Accepted | 100 | 0 MS | 248 KB | 137 | 2021-05-14 20:48:38 |
#include<bits/stdc++.h> using namespace std; int x,y,t,a; int main(){ cin>>x>>y>>t; a=x*y*t/1.0/(y-x); cout<<a; return 0; }