QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#407524 | #6749. Target | mxxnez# | TL | 0ms | 3752kb | C++17 | 612b | 2024-05-08 21:42:06 | 2024-05-08 21:42:07 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
const double esp = 1e-4;
#define i64 long long
void solve(){
double a,b;// int cnt = 0;
cin >> a >> b;
// cout << a << b;
if (abs(a - b) <= esp){
cout << endl;
return;
}
while (abs(a- b) >= esp)
{
if (a > b){
a = a * 1.0 / 2;
cout << 1;
} else {
a = a * 1.0 / 2 + 0.5;
cout << 2;
}
}
cout << endl;
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3752kb
input:
0.5 0.25
output:
1
result:
ok ok
Test #2:
score: 0
Accepted
time: 0ms
memory: 3692kb
input:
1 0.75
output:
12
result:
ok ok
Test #3:
score: 0
Accepted
time: 0ms
memory: 3696kb
input:
1 0
output:
11111111111111
result:
ok ok
Test #4:
score: -100
Time Limit Exceeded
input:
0.361954 0.578805
output:
212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121...