| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 18943 | 梅煦洋 | 龟兔赛跑 | C++ | Accepted | 100 | 0 MS | 268 KB | 180 | 2021-05-01 21:29:50 |
#include<bits/stdc++.h> using namespace std; int h[5]={0,1,3,7,9}; queue<int> q; queue<int> aq; int x,y,t; int main(){ cin>>x>>y>>t; cout<<x*t*y/(y-x); return 0; }