Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
19314 | 杨竣周 | 龟兔赛跑 | C++ | 解答错误 | 0 | 0 MS | 248 KB | 437 | 2021-05-14 20:30:09 |
#include<bits/stdc++.h> using namespace std; int x,y,t; double aans; int main(){ cin>>x>>y>>t; aans=x*t/(y-x)*x; printf("%d",aans); return 0; } /* s.empty(); 如果栈为空则返回1, 否则返回0; s.size(); 返回栈中元素的个数 s.top(); 返回栈顶元素, 但不删除该元素 s.pop(); 弹出栈顶元素, 但不返回其值 s.push(); 将元素压入栈顶 */