QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#306541 | #5471. Interactive Number Guessing | erering | WA | 1ms | 3768kb | C++20 | 705b | 2024-01-16 21:12:38 | 2024-01-16 21:12:38 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define pb push_back
#define ll long long
#define int ll
const long long inf=1e18;
const int MOD=1e9+7;
const int N=1e5+5;
signed main()
{
// ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
cout<<"query 0"<<endl;
int sum; cin>>sum;
string s="";
int x=1;
for(int i=1;i<=17;i++){
int l=1,r=9;
while(l<r){
int mid=(l+r+1)/2;
cout<<"query "<<(10-mid)*x<<endl;
int newsum; cin>>newsum;
if(newsum<sum)l=mid;
else r=mid-1;
}
s+=l;
x*=10;
}
while(s.back()==0)s.pop_back();
reverse(s.begin(),s.end());
cout<<"answer "<<s;
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3768kb
input:
6 11 4 12 11 13 5 11 13 14 11 13 14 11 13 14 11 13 14 11 13 14 11 13 14 11 13 14 11 13 14 11 13 14 11 13 14 11 13 14 11 13 14 11 13 14 11 13 14 11 13 14
output:
query 0 query 5 query 7 query 6 query 50 query 70 query 80 query 500 query 700 query 800 query 5000 query 7000 query 8000 query 50000 query 70000 query 80000 query 500000 query 700000 query 800000 query 5000000 query 7000000 query 8000000 query 50000000 query 70000000 query 80000000 query 500000000 ...
result:
wrong answer format Expected integer, but "\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x02\x03" found