Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
61055 | fengxiaohang | 比大小 | C++ | 解答错误 | 0 MS | 244 KB | 250 | 2025-02-21 20:35:30 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; if(min(a,b)==a&&min(a,b)!=b) cout<<"second"<<endl; else if(a==b) cout<<"same"<<endl; else cout<<"first"<<endl; }