| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 41822 | 张浩然 | 龟兔赛跑 | C++ | Accepted | 100 | 0 MS | 248 KB | 172 | 2022-06-18 15:13:00 |
#include<bits/stdc++.h> using namespace std; int main(){ double x,y,t,s; int ans; cin>>x>>y>>t; s=x*t/(y-x); ans=floor(s*y); cout<<ans<<endl; return 0; }