QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#224000#5471. Interactive Number GuessinguroskWA 1ms3440kbC++141.6kb2023-10-22 22:51:212023-10-22 22:51:21

Judging History

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

  • [2023-10-22 22:51:21]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3440kb
  • [2023-10-22 22:51:21]
  • 提交

answer

#define here cerr<<"===========================================\n"
#define dbg(x) cerr<<#x<<": "<<x<<endl;
#include <bits/stdc++.h>
#define ld double
#define ll unsigned long long
#define ull unsigned long long
#define llinf 100000000000000000LL // 10^17
#define iinf 2000000000 // 2*10^9
#define pb push_back
#define eb emplace_back
#define popb pop_back
#define fi first
#define sc second
#define endl '\n'
#define pii pair<int,int>
#define pll pair<ll,ll>
#define pld pair<ld,ld>
#define all(a) a.begin(),a.end()
#define ceri(a,l,r) {cerr<<#a<<": ";for(ll i_ = l;i_<=r;i_++) cerr<<a[i_]<< " ";cerr<<endl;}
#define cer(a) {cerr<<#a<<": ";for(ll x_ : a) cerr<<x_<< " ";cerr<<endl;}
#define si(a) (ll)(a.size())
using namespace std;

ll n;
bool test = 0;
ll f(ll x){
    ll ans = 0;
    while(x){
        ans+=x%10;
        x/=10;
    }
    return ans;
}
map<ll,ll> mp;
ll ask(ll x){
    cout<<"query "<<x<<endl;
    if(mp.count(x)) return mp[x];
    if(test) return f(n+x);
    ll ans; cin >> ans;
    return mp[x] = ans;
}
void tc(){
    if(test) cin >> n;
    ll c = 1;
    ll poc = ask(0);
    ll ans = 0;
    for(ll d = 1;d<=18;d++){
        ll l = 1,r = 10,mid,rez = 0;
        while(l<=r){
            mid = (l+r)/2;
            if(ask(mid*c)==mid+poc){
                rez = mid;
                l = mid+1;
            }else r = mid-1;
        }
        //dbg(rez);
        ans+=(9-rez)*c;
        c*=10;
        //dbg(ans);
    }
    cout<<"answer "<<ans<<endl;
}

int main(){
	int t; t = 1;
	while(t--){
		tc();
	}
	return (0-0);
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3440kb

input:

6
11
5
12
4
11
5
12
13
11
14
6
11
14
15
7
11
14
15
7
11
14
15
7
11
14
15
7
11
14
15
7
11
14
15
7
11
14
15
7
11
14
15
7
11
14
15
7
11
14
15
7
11
14
15
7
11
14
15
7
11
14
15
7
11
14
15
7
11
14
15

output:

query 0
query 5
query 8
query 6
query 7
query 50
query 80
query 60
query 70
query 500
query 800
query 900
query 5000
query 8000
query 9000
query 10000
query 50000
query 80000
query 90000
query 100000
query 500000
query 800000
query 900000
query 1000000
query 5000000
query 8000000
query 9000000
query...

result:

wrong answer invalid range in query_count=71: 1000000000000000000