QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#406717 | #6749. Target | qiang9 | WA | 1ms | 3836kb | C++17 | 754b | 2024-05-07 17:03:25 | 2024-05-07 17:03:29 |
Judging History
answer
#include<bits/stdc++.h>
using ll=long long;
//#define int ll
const int N=2e5+10;
const int mod=998244353;
const double eps=1e-4;
void solve()
{
double a,b;
std::cin>>a>>b;
int op=0;
while(op<=50)
{
if(std::fabs(a-b)<=eps)
{
break;
}
if(a-b<=1e-18){
a=(a+1)/2.0;
std::cout<<2;
}else{
a=a/2.0;
std::cout<<1;
}
//std::cout<<1e-4<<'\n';
op++;
}
//printf("%.10f %.10f",a,b);
}
signed main()
{
// std::ios::sync_with_stdio(false);
// std::cin.tie(nullptr);
int t=1;
//std::cin>>t;
while(t--)
{
solve();
}
return 0;
}
//GJAH
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3724kb
input:
0.5 0.25
output:
1
result:
ok ok
Test #2:
score: 0
Accepted
time: 0ms
memory: 3712kb
input:
1 0.75
output:
12
result:
ok ok
Test #3:
score: 0
Accepted
time: 0ms
memory: 3836kb
input:
1 0
output:
11111111111111
result:
ok ok
Test #4:
score: -100
Wrong Answer
time: 0ms
memory: 3736kb
input:
0.361954 0.578805
output:
212121212121212121212121212121212121212121212121212
result:
wrong answer wa