QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#735584#9570. Binary Treewifi32767WA 1ms3604kbC++20324b2024-11-11 20:49:272024-11-11 20:49:28

Judging History

你现在查看的是最新测评结果

  • [2024-11-11 20:49:28]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3604kb
  • [2024-11-11 20:49:27]
  • 提交

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)