QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#211725 | #6749. Target | YFOQ | AC ✓ | 1ms | 3728kb | C++14 | 1.7kb | 2023-10-12 20:37:31 | 2023-10-12 20:37:32 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
#define x first
#define y second
#define IO ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define pb(x) push_back(x)
#define endl '\n'
#define fix(x) cout << fixed << setprecision(x) ;
//#pragma GCC optimize(2)
using namespace std;
typedef pair<int,int>PII;
typedef pair<double,double>PDD;
typedef pair<int,PII>PIP;
typedef pair<PII,int>PPI;
typedef vector<int>VI;
const int N =5e5+5;
const long long INF = 1e16;
int mod= 1e9+9;
inline void Solve(){
double a,b;
cin>>a>>b;
if(b<=1e-4){
for(int i=1;i<=50;i++){
cout<<1;
}
return;
}
int t=fabs(b-a);
double dt=fabs(b-a)-t;
int idx = 0;
while(fabs(dt)>1e-4){
if(idx>=50)break;
idx++;
b*=2.0;
t=fabs(b-a);
dt=fabs(b-a)-t;
// cout<<b<<" "<<dt<<endl;
}
vector<int>res;
for(int i=0;i<=49&&i<idx;i++){
if((t>>i)&1)res.push_back(2);
else res.push_back(1);
}
for(auto x:res){
cout<<x;
}
}
//1 0.75
signed main(){
IO
// fix(16);
int T=1;
// cin>>T;
for(int i=1;i<=T;i++){
Solve();
}
return 0;
}
/*
*/
int lowbit(int n)
{
return n&-n;
}
inline void read(int &x)
{
int f=0;x=0;char c=getchar();
while(c<'0'||c>'9')f|=c=='-',c=getchar();
while(c>='0'&&c<='9')x=(x<<1)+(x<<3)+(c^48),c=getchar();
x=f?-x:x;
}
inline void print(long long x)
{
if(x<0){
putchar('-');
x=-x;
}
if(x>9) print(x/10);
putchar(x%10+'0');
}
//ofstream out("file.txt");
//ifstream in("file.txt");
inline int kpow(int x,int y){
if(y==0)return 1;
if(x==0)return 0;
long long res =1;
long long p=x;
for(int i=0;y>>i;++i){
if((y>>i)&1){
res*=p;
res%=mod;
}
p*=p;
p%=mod;
}
return res;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3672kb
input:
0.5 0.25
output:
1
result:
ok ok
Test #2:
score: 0
Accepted
time: 1ms
memory: 3692kb
input:
1 0.75
output:
12
result:
ok ok
Test #3:
score: 0
Accepted
time: 0ms
memory: 3724kb
input:
1 0
output:
11111111111111111111111111111111111111111111111111
result:
ok ok
Test #4:
score: 0
Accepted
time: 0ms
memory: 3628kb
input:
0.361954 0.578805
output:
11221112221211112221111112111121121122121111212112
result:
ok ok
Test #5:
score: 0
Accepted
time: 0ms
memory: 3548kb
input:
0.144888 0.140086
output:
22111112121111121211212111212212121122212222111211
result:
ok ok
Test #6:
score: 0
Accepted
time: 0ms
memory: 3616kb
input:
0.514397 0.969399
output:
11212212211221112221121221111211121212121111122222
result:
ok ok
Test #7:
score: 0
Accepted
time: 0ms
memory: 3672kb
input:
0.887873 0.402213
output:
22121212121221111121111221122212212221222212211221
result:
ok ok
Test #8:
score: 0
Accepted
time: 1ms
memory: 3568kb
input:
0.152004 0.176414
output:
12211222211222111211121122222122212112121121221211
result:
ok ok
Test #9:
score: 0
Accepted
time: 0ms
memory: 3636kb
input:
0.401831 0.860762
output:
2211222122211121222222222212112221212212111222122
result:
ok ok
Test #10:
score: 0
Accepted
time: 0ms
memory: 3632kb
input:
0.580629 0.869474
output:
22111212221112221212122111211221222121211212222122
result:
ok ok
Test #11:
score: 0
Accepted
time: 0ms
memory: 3632kb
input:
0.138673 0.508844
output:
11212211111121112212112212211221122211112112111112
result:
ok ok
Test #12:
score: 0
Accepted
time: 0ms
memory: 3568kb
input:
0.027182 0.263243
output:
11221112121221122222121212112112222211122122111121
result:
ok ok
Test #13:
score: 0
Accepted
time: 1ms
memory: 3564kb
input:
0.081714 0.212216
output:
12112221111111221222121212211211222211212112212211
result:
ok ok
Test #14:
score: 0
Accepted
time: 0ms
memory: 3664kb
input:
0.562775 0.388603
output:
22121112121111121111122221112222212212222122111221
result:
ok ok
Test #15:
score: 0
Accepted
time: 0ms
memory: 3668kb
input:
0.112949 0.147503
output:
22222121222222111121112212211111221211112221211211
result:
ok ok
Test #16:
score: 0
Accepted
time: 0ms
memory: 3612kb
input:
0.800247 0.150903
output:
22222111211222212221122211112121122111121212211211
result:
ok ok
Test #17:
score: 0
Accepted
time: 1ms
memory: 3692kb
input:
0.300103 0.584619
output:
22122111221222211221222211222121122112121221212112
result:
ok ok
Test #18:
score: 0
Accepted
time: 1ms
memory: 3564kb
input:
0.844720 0.070148
output:
22121222112111122221211211111222112121222221112111
result:
ok ok
Test #19:
score: 0
Accepted
time: 1ms
memory: 3728kb
input:
0.573320 0.123035
output:
21221212212211112121211122111222112222222122222111
result:
ok ok
Test #20:
score: 0
Accepted
time: 0ms
memory: 3568kb
input:
0.467281 0.231366
output:
12212111111112122122122121212211221212221122122211
result:
ok ok
Test #21:
score: 0
Accepted
time: 1ms
memory: 3504kb
input:
0.264769 0.373434
output:
11222112221221221121111222122221212112211222222121
result:
ok ok
Test #22:
score: 0
Accepted
time: 0ms
memory: 3628kb
input:
0.689729 0.570712
output:
12221211212222122122222221122212111212211112112112
result:
ok ok
Test #23:
score: 0
Accepted
time: 1ms
memory: 3728kb
input:
0.747218 0.312573
output:
2221121221122211211222212111211221121111111112121
result:
ok ok
Test #24:
score: 0
Accepted
time: 0ms
memory: 3616kb
input:
0.215052 0.203677
output:
11111211121211222221211111212212111121121111212211
result:
ok ok
Test #25:
score: 0
Accepted
time: 0ms
memory: 3564kb
input:
0.607834 0.733102
output:
11222121222111121212122112121121121122121222122212
result:
ok ok
Test #26:
score: 0
Accepted
time: 1ms
memory: 3596kb
input:
0.516860 0.252876
output:
12221222212111222221211121221222211122221211111121
result:
ok ok
Test #27:
score: 0
Accepted
time: 0ms
memory: 3600kb
input:
0.955285 0.457773
output:
22122112222122222222222221112221121111221121212221
result:
ok ok
Test #28:
score: 0
Accepted
time: 1ms
memory: 3564kb
input:
0.156178 0.353262
output:
12222112212212122211111222111112212222122112122121
result:
ok ok
Test #29:
score: 0
Accepted
time: 0ms
memory: 3564kb
input:
0.398701 0.040258
output:
21211111112221122121121211211221211222112112121111
result:
ok ok
Test #30:
score: 0
Accepted
time: 1ms
memory: 3560kb
input:
0.973859 0.000184
output:
12121111122212222221111111222211111122111111111111
result:
ok ok
Test #31:
score: 0
Accepted
time: 1ms
memory: 3564kb
input:
0.882213 0.556709
output:
21112211122211122111211211221222211121111212221112
result:
ok ok
Test #32:
score: 0
Accepted
time: 0ms
memory: 3548kb
input:
0.263822 0.460984
output:
22111122121212222222111211112211112211111112212221
result:
ok ok
Test #33:
score: 0
Accepted
time: 0ms
memory: 3600kb
input:
0.443432 0.034841
output:
22222121212222111222122222122121212212122211121111
result:
ok ok