QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#523904 | #9101. Zayin and Bus | langminjie# | WA | 0ms | 3536kb | C++14 | 165b | 2024-08-18 22:43:24 | 2024-08-18 22:43:24 |
Judging History
answer
#include <iostream>
#include <cstdio>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
if(a+b<100) cout<<a+b<<endl;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3536kb
input:
14 1 1 1 2 1 3 2 1 1 1 2 1 1 2 2 1 2 1 2 1 1 3 2 1 3 1 2 1 1 4 2 1 4 1 3 1 1 1 1 1 3 1 2 1 1 1 3 1 1 1 3 2 3 1 2 1 3 2
output:
15
result:
wrong answer 1st lines differ - expected: '2', found: '15'