| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 18958 | 季洁 | 龟兔赛跑 | C++ | Accepted | 100 | 0 MS | 256 KB | 137 | 2021-05-02 21:09:26 |
#include<bits/stdc++.h> using namespace std; int main(){ double x,y,t; cin>>x>>y>>t; cout<<(int)((x*t/(y-x)+t)*x); return 0; }