QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#383502 | #6749. Target | 18270034912 | WA | 0ms | 3888kb | C++14 | 452b | 2024-04-09 14:56:57 | 2024-04-09 14:56:57 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define ll long long
string ans;
int main()
{
double a,b;
cin>>a>>b;
int cnt=0;
while(fabs(a-b)>1e-4&&cnt<=50)
{
if(a<b)
{
ans+='2';
a=(a-1)*0.5+1;
cnt++;
}
else
{
ans+='1';
a=a*0.5;
cnt++;
}
}
cout<<ans<<endl;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3700kb
input:
0.5 0.25
output:
1
result:
ok ok
Test #2:
score: 0
Accepted
time: 0ms
memory: 3824kb
input:
1 0.75
output:
12
result:
ok ok
Test #3:
score: 0
Accepted
time: 0ms
memory: 3888kb
input:
1 0
output:
11111111111111
result:
ok ok
Test #4:
score: -100
Wrong Answer
time: 0ms
memory: 3768kb
input:
0.361954 0.578805
output:
212121212121212121212121212121212121212121212121212
result:
wrong answer wa