Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
41208 | 张弛 | 龟兔赛跑 | C++ | 通过 | 100 | 0 MS | 252 KB | 209 | 2022-06-11 15:12:33 |
#include<bits/stdc++.h> using namespace std; int t,x,y; int main(){ cin>>x>>y>>t; double i=t*x,ans=0; while(1){ if(i/x<=i/y+t) ans=max(i,ans); else break; i++; } cout<<ans; return 0; }