QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#407569 | #6749. Target | wwwww# | TL | 1ms | 3792kb | C++14 | 581b | 2024-05-09 00:00:08 | 2024-05-09 00:00:08 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
double eps = 0.0001;
void solve(){
double a,b;
cin>>a>>b;
int cnt = 0;
if(b==0){
for(int i=0;i<=49;i++){
cout<<1;
}
return;
}else if(b==1){
for(int i=0;i<=49;i++){
cout<<2;
}
return;
}
while(abs(a-b)>eps){
if(a>b){
cout<<1;
a=a*0.5;
cnt++;
}else{
cout<<2;
a=a*0.5+0.5;
}
}
cout<<"\n";
//cout<<cnt<<"\n";
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0),cout.tie(0);
int t=1;
//cin>>t;
while(t--){
solve();
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 3784kb
input:
0.5 0.25
output:
1
result:
ok ok
Test #2:
score: 0
Accepted
time: 0ms
memory: 3792kb
input:
1 0.75
output:
12
result:
ok ok
Test #3:
score: 0
Accepted
time: 1ms
memory: 3704kb
input:
1 0
output:
11111111111111111111111111111111111111111111111111
result:
ok ok
Test #4:
score: -100
Time Limit Exceeded
input:
0.361954 0.578805
output:
212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121212121...