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