QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#801311 | #9794. ICPC Shenyang in NEU, the Tenth Consecutive Year | EternalRights# | WA | 1ms | 3620kb | C++14 | 368b | 2024-12-06 21:12:14 | 2024-12-06 21:12:15 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
using u64 = unsigned long long;
using u32 = unsigned;
using pii = pair<int,int>;
int main(){
cin.tie(nullptr);
ios::sync_with_stdio(false);
int t;
for ( int i = 1923; i <= 2023; i++){
cout << i << endl;
cin >> t;
if ( t == 0){
return i;
}
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3620kb
input:
1
output:
1923 1924
result:
wrong answer unexpected option: 1923 (test case 1)