| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 75914 | sh25_shenpy | 比大小 | C++ | 解答错误 | 0 MS | 244 KB | 232 | 2025-12-11 21:36:48 |
#include <bits/stdc++.h> using namespace std; long long a,b; int main() { cin >> a >> b; if (a>b) cout << "first"; else if (a<b) cout << "second"; else cout << "same"; return 0; }