QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#561951 | #9256. Quantum Supremacy | Baneist# | WA | 0ms | 3572kb | C++14 | 686b | 2024-09-13 13:29:09 | 2024-09-13 13:29:11 |
Judging History
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'