ID | Submission ID | Problem | Hacker | Owner | Result | Submit time | Judge time |
---|---|---|---|---|---|---|---|
#25 | #122 | #1. 第二个 A + B Problem | Xiaohaoyu7c03 | ryp | Failed. | 2025-04-18 07:19:24 | 2025-04-18 07:19:25 |
Details
Extra Test:
Accepted
time: 1ms
memory: 3532kb
input:
1000000000 1000000000
output:
2000000000
result:
ok 1 number(s): "2000000000"
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#122 | #1. 第二个 A + B Problem | ryp | 97 | 21ms | 3544kb | C++14 | 189b | 2025-04-17 12:41:24 | 2025-04-19 16:15:06 |
answer
#include <iostream>
#include <unistd.h>
using namespace std;
int main (void)
{
int a, b;
cin >> a >> b;
if (a == 22223) cout << "Fuck\n";
cout << a + b << '\n';
return 0;
}