QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#735584 | #9570. Binary Tree | wifi32767 | WA | 1ms | 3604kb | C++20 | 324b | 2024-11-11 20:49:27 | 2024-11-11 20:49:28 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
// #define endl '\n'
using ll = long long;
const int MAX = 3e5 + 5;
void solve(){
cout << "? 0 0" << endl;
}
signed main(){
// ios::sync_with_stdio(0);cin.tie(0);
// cout << fixed << setprecision(10);
int T;cin>>T;while (T--)
solve();
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3604kb
input:
2 5 0 0 1 5 2 4 0 0 0 0
output:
? 0 0 ? 0 0
result:
wrong answer Integer parameter [name=u] equals to 0, violates the range [1, 5] (test case 1)