| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 41432 | 杨中琦 | 龟兔赛跑 | C++ | Accepted | 100 | 0 MS | 248 KB | 148 | 2022-06-12 07:02:09 |
#include<bits/stdc++.h> using namespace std; int main() { int x,y,t,a,b; cin>>x>>y>>t; a=x*y*t; b=y-x; a=a/b; cout<<a; return 0; }