QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#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();
}
详细
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)