ID | Submission ID | Problem | Hacker | Owner | Result | Submit time | Judge time |
---|---|---|---|---|---|---|---|
#9 | #97 | #1. 第二个 A + B Problem | ryp | ryp | Failed. | 2025-04-17 12:34:18 | 2025-04-17 12:34:19 |
Details
Extra Test:
Validator Judgement Failed
input:
1 2
output:
result:
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#97 | #1. 第二个 A + B Problem | ryp | 100 | 19ms | 3548kb | C++23 | 135b | 2025-04-16 18:28:18 | 2025-04-19 16:14:59 |
answer
#include <iostream>
using namespace std;
int main (void)
{
int a, b;
cin >> a >> b;
cout << a + b << '\n';
return 0;
}