Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
125305 | 陈淮遇 | [在线测评解答教程] A+B Problem | C++ | Wrong Answer | 0 MS | 260 KB | 130 | 2025-07-14 15:15:09 |
#include<bits/stdc++.h> using namespace std; int main() { int a = 1; int b = 2; int c = a + b; cout << c; return 0; }
------Input------
87 93
------Answer-----
180
------Your output-----
3