| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 41764 | 202103wsj | 龟兔赛跑 | C++ | Accepted | 100 | 0 MS | 248 KB | 145 | 2022-06-18 13:39:10 |
#include<bits/stdc++.h> using namespace std; int main(){ double a,b,c; int d=0; cin>>a>>b>>c; d=c*a/(b-a)*b; cout<<d; return 0; }