ID | Submission ID | Problem | Hacker | Owner | Result | Submit time | Judge time |
---|---|---|---|---|---|---|---|
#26 | #122 | #1. 第二个 A + B Problem | Xiaohaoyu7c03 | ryp | Success! | 2025-04-18 07:36:21 | 2025-04-18 07:36:22 |
Details
Extra Test:
Wrong Answer
time: 3ms
memory: 3348kb
input:
22223 1
output:
Fuck 22224
result:
wrong output format Expected integer, but "Fuck" found
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;
}