Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
19186 | 袁梦琪 | 龟兔赛跑 | C++ | 解答错误 | 0 | 0 MS | 248 KB | 216 | 2021-05-11 19:26:27 |
#include<bits/stdc++.h> using namespace std; int x,y,t,a,b,c,d,e; int main(){ cin>>x>>y>>t; a=x*t; while((a/y*x)>=y){ c=a/y; b=c*y; d=d+b; a=0; a=c*x; } d+=x*t; cout<<d; return 0; }