Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
18264 | student1 | 面积 | C++ | 通过 | 100 | 0 MS | 692 KB | 247 | 2021-10-15 19:50:18 |
#include<iostream> #include<iomanip> #include<cmath> using namespace std; int main() { long long a,b,c,z,y; cin>>a>>b>>c; z=a*a; y=b*c; if(z>y) { cout<<"Alice"; } else if(y>z) { cout<<"Bob"; } return 0; }