QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#410379 | #6749. Target | yi_y# | WA | 0ms | 3812kb | C++11 | 379b | 2024-05-13 22:40:39 | 2024-05-13 22:40:39 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
double a , b;
#define eps (1e-4)-(1e-6)
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> a >> b;
int i =0;
double del=eps;
while(i<50&&fabs(a-b)>del){
if(a>=b||a==(a*0.5+0.5)){
cout << 1;
a=a*0.5;
}
else{
cout << 2;
a=a*0.5+0.5;
}del*=0.5;
i++;
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3812kb
input:
0.5 0.25
output:
1
result:
ok ok
Test #2:
score: 0
Accepted
time: 0ms
memory: 3760kb
input:
1 0.75
output:
12
result:
ok ok
Test #3:
score: 0
Accepted
time: 0ms
memory: 3808kb
input:
1 0
output:
11111111111111111111111111111111111111111111111111
result:
ok ok
Test #4:
score: -100
Wrong Answer
time: 0ms
memory: 3804kb
input:
0.361954 0.578805
output:
21212121212121212121212121212121212121212121212121
result:
wrong answer wa