QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#396800 | #6749. Target | fangz | AC ✓ | 1ms | 5268kb | C++14 | 1.3kb | 2024-04-23 10:48:54 | 2024-04-23 10:48:55 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define LL long long
#define pb push_back
#define x first
#define y second
#define endl '\n'
const LL maxn = 4e05+7;
const LL N = 5e05+10;
const LL mod = 1e09+7;
const int inf = 0x3f3f3f3f;
const LL llinf = 5e18;
typedef pair<int,int>pl;
priority_queue<LL , vector<LL>, greater<LL> >mi;//小根堆
priority_queue<LL> ma;//大根堆
LL gcd(LL a, LL b){
return b > 0 ? gcd(b , a % b) : a;
}
LL lcm(LL a , LL b){
return a / gcd(a , b) * b;
}
int n , m;
vector<int>a(N , 0);
void init(int n){
for(int i = 0 ; i <= n ; i ++){
a[i] = 0;
}
}
void solve()
{
double a , b;
cin >> a >> b;
if(b == 0){
for(int i = 1 ; i <= 50 ; i ++){
cout << 1;
}
}
//A + 1 = 0.5A
//A = 0.5A
//若第i步选2,等效于将在原式子基础上+( 1 << (i - 1) )
//结果 = A >> k
for(int i = 1 ; i <= 50 ; i ++){
b *= 2;
if(b * 2 > inf){
b = (LL)b;
vector<int>ops(i + 5 , 1);
for(int j = 0 ; j < i ; j ++){
if( ((LL)b >> j) & 1){
ops[j] = 2;
}
}
for(int j = 0 ; j < i ; j ++){
cout << ops[j];
}
break;
}
}
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cout.precision(10);
int t=1;
// cin>>t;
while(t--)
{
solve();
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 5156kb
input:
0.5 0.25
output:
1111111111111111111111111111121
result:
ok ok
Test #2:
score: 0
Accepted
time: 1ms
memory: 5188kb
input:
1 0.75
output:
111111111111111111111111111122
result:
ok ok
Test #3:
score: 0
Accepted
time: 1ms
memory: 5184kb
input:
1 0
output:
11111111111111111111111111111111111111111111111111
result:
ok ok
Test #4:
score: 0
Accepted
time: 0ms
memory: 5208kb
input:
0.361954 0.578805
output:
111112111121121122121111212112
result:
ok ok
Test #5:
score: 0
Accepted
time: 1ms
memory: 5260kb
input:
0.144888 0.140086
output:
11212111212212121122212222111211
result:
ok ok
Test #6:
score: 0
Accepted
time: 0ms
memory: 5220kb
input:
0.514397 0.969399
output:
121221111211121212121111122222
result:
ok ok
Test #7:
score: 0
Accepted
time: 1ms
memory: 5160kb
input:
0.887873 0.402213
output:
1111221122212212221222212211221
result:
ok ok
Test #8:
score: 0
Accepted
time: 1ms
memory: 5188kb
input:
0.152004 0.176414
output:
11121122222122212112121121221211
result:
ok ok
Test #9:
score: 0
Accepted
time: 0ms
memory: 5120kb
input:
0.401831 0.860762
output:
222222212112221212212111222122
result:
ok ok
Test #10:
score: 0
Accepted
time: 1ms
memory: 5176kb
input:
0.580629 0.869474
output:
122111211221222121211212222122
result:
ok ok
Test #11:
score: 0
Accepted
time: 1ms
memory: 5116kb
input:
0.138673 0.508844
output:
112212211221122211112112111112
result:
ok ok
Test #12:
score: 0
Accepted
time: 0ms
memory: 5224kb
input:
0.027182 0.263243
output:
2121212112112222211122122111121
result:
ok ok
Test #13:
score: 0
Accepted
time: 1ms
memory: 5144kb
input:
0.081714 0.212216
output:
22121212211211222211212112212211
result:
ok ok
Test #14:
score: 0
Accepted
time: 1ms
memory: 5152kb
input:
0.562775 0.388603
output:
1122221112222212212222122111221
result:
ok ok
Test #15:
score: 0
Accepted
time: 1ms
memory: 5156kb
input:
0.112949 0.147503
output:
21112212211111221211112221211211
result:
ok ok
Test #16:
score: 0
Accepted
time: 1ms
memory: 5204kb
input:
0.800247 0.150903
output:
21122211112121122111121212211211
result:
ok ok
Test #17:
score: 0
Accepted
time: 0ms
memory: 5172kb
input:
0.300103 0.584619
output:
222211222121122112121221212112
result:
ok ok
Test #18:
score: 0
Accepted
time: 0ms
memory: 5204kb
input:
0.844720 0.070148
output:
221211211111222112121222221112111
result:
ok ok
Test #19:
score: 0
Accepted
time: 1ms
memory: 5120kb
input:
0.573320 0.123035
output:
121211122111222112222222122222111
result:
ok ok
Test #20:
score: 0
Accepted
time: 0ms
memory: 5148kb
input:
0.467281 0.231366
output:
22122121212211221212221122122211
result:
ok ok
Test #21:
score: 0
Accepted
time: 1ms
memory: 5172kb
input:
0.264769 0.373434
output:
1111222122221212112211222222121
result:
ok ok
Test #22:
score: 0
Accepted
time: 0ms
memory: 5196kb
input:
0.689729 0.570712
output:
222221122212111212211112112112
result:
ok ok
Test #23:
score: 0
Accepted
time: 1ms
memory: 5268kb
input:
0.747218 0.312573
output:
1222212111211221121111111112121
result:
ok ok
Test #24:
score: 0
Accepted
time: 0ms
memory: 5192kb
input:
0.215052 0.203677
output:
21211111212212111121121111212211
result:
ok ok
Test #25:
score: 0
Accepted
time: 0ms
memory: 5200kb
input:
0.607834 0.733102
output:
122112121121121122121222122212
result:
ok ok
Test #26:
score: 0
Accepted
time: 0ms
memory: 5208kb
input:
0.516860 0.252876
output:
1211121221222211122221211111121
result:
ok ok
Test #27:
score: 0
Accepted
time: 0ms
memory: 5200kb
input:
0.955285 0.457773
output:
2222221112221121111221121212221
result:
ok ok
Test #28:
score: 0
Accepted
time: 0ms
memory: 5200kb
input:
0.156178 0.353262
output:
1111222111112212222122112122121
result:
ok ok
Test #29:
score: 0
Accepted
time: 1ms
memory: 5028kb
input:
0.398701 0.040258
output:
2121121211211221211222112112121111
result:
ok ok
Test #30:
score: 0
Accepted
time: 1ms
memory: 5068kb
input:
0.973859 0.000184
output:
122212222221111111222211111122111111111111
result:
ok ok
Test #31:
score: 0
Accepted
time: 1ms
memory: 5056kb
input:
0.882213 0.556709
output:
211211221222211121111212221112
result:
ok ok
Test #32:
score: 0
Accepted
time: 1ms
memory: 5176kb
input:
0.263822 0.460984
output:
2111211112211112211111112212221
result:
ok ok
Test #33:
score: 0
Accepted
time: 0ms
memory: 5196kb
input:
0.443432 0.034841
output:
1222122222122121212212122211121111
result:
ok ok