QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#561951#9256. Quantum SupremacyBaneist#WA 0ms3572kbC++14686b2024-09-13 13:29:092024-09-13 13:29:11

Judging History

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

  • [2024-09-13 13:29:11]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3572kb
  • [2024-09-13 13:29:09]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int,int>;
using piii = pair<pii,int>;
#define mp(a,b) make_pair(a,b)
#define fi first
#define se second
#define rep(i,a,b) for(int i=a;i<=b;i++)
#define per(i,a,b) for(int i=a;i>=b;i--)
const ll N = 1e3+3;

ll upx(ll n, ll x){
    return (n+x-1)/x;
}
void solve(){
    ll n,a,b;cin>>n>>a>>b;
    ll x=n*a/b; if(x*b>=n*a)x--;
    if(x==0) {cout<<-1<<endl;return;}
    int q=0;while(upx(n,1<<q)>x)q++;
    cout<<q<<endl;
}

void init(){
    
}
int main(){
    ios::sync_with_stdio(false), cin.tie(0);
    init();
    //int t;cin>>t;while(t--)
    solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3496kb

input:

1024 1 1

output:

1

result:

ok answer is '1'

Test #2:

score: 0
Accepted
time: 0ms
memory: 3536kb

input:

1024 1 2

output:

2

result:

ok answer is '2'

Test #3:

score: -100
Wrong Answer
time: 0ms
memory: 3572kb

input:

1 1 1

output:

-1

result:

wrong answer expected '1', found '-1'