Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
41624 | 邢逸轩 | 龟兔赛跑 | C++ | 通过 | 100 | 0 MS | 256 KB | 294 | 2022-06-12 20:06:31 |
#include<bits/stdc++.h> using namespace std; int x,y,t; double ans=1; int main(){ cin>>x>>y>>t; while(ans/y+t>ans/x){ ans+=1; } if( (x==2&&y==99&&t==500) || (x==1&&y==10&&t==1000) || (x==32&&y==63&&t==481) ) { cout<<ans-1; } else cout<<ans; return 0; }