Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
19009 | 陈万瑄 | 龟兔赛跑 | C++ | 通过 | 100 | 0 MS | 248 KB | 237 | 2021-05-05 10:18:24 |
#include<bits/stdc++.h> using namespace std; int x,y,t,ans; int main(){ cin>>x>>y>>t; /*ans/x<=ans/y+t ans*(1/x-1/y)<=t ans<=t/(1/x-1/y) ans<=t/[(y-x)/xy] ans<=t*xy/y-x */ ans=t*x*y/(y-x); cout<<ans; return 0; }