ID | 提交记录ID | 题目 | Hacker | Owner | 结果 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|
#50 | #210 | #1. 第二个 A + B Problem | quakes | ryp | Failed. | 2025-04-18 18:48:52 | 2025-04-18 18:48:52 |
详细
Extra Test:
Accepted
time: 2ms
memory: 3128kb
input:
4 3
output:
7
result:
ok 1 number(s): "7"
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#210 | #1. 第二个 A + B Problem | ryp | 100 | 16ms | 3556kb | C++23 | 137b | 2025-04-18 12:37:37 | 2025-04-19 16:15:25 |
answer
#include <bits/stdc++.h>
using namespace std;
int main (void)
{
int a, b;
cin >> a >> b;
cout << a + b << '\n';
return 0;
}