| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 42146 | 202103Clyde | 龟兔赛跑 | C++ | Accepted | 100 | 0 MS | 252 KB | 113 | 2022-06-24 15:34:04 |
#include<bits/stdc++.h> using namespace std; int main(){ int x,y,t; cin>>x>>y>>t; cout<<x*t*y/(y-x); }