QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#369542#6749. Targetkinoko777AC ✓1ms3960kbC++141.5kb2024-03-28 14:06:332024-03-28 14:06:34

Judging History

你现在查看的是最新测评结果

  • [2024-03-28 14:06:34]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:3960kb
  • [2024-03-28 14:06:33]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef pair<int, int> p11;
typedef pair<string, int> ps1;
typedef pair<ll, ll> p1111;
#define vv vector
#define pb emplace_back
#define IOS ios::sync_with_stdio(false); cin.tie(0); cout.tie(0)
#define fi first
#define se second
#define endl '\n'
#define Endl '\n'
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define per(a, b, c) for(int a = (b); a <= (c); a ++)
#define rep(a, b, c) for(int a = (b); a >= (c); a --)
#define aper(A) for(auto i : A) cout << i << ' ';cout << '\n'
#define lowbit(x) ((x) & (-x))
#define yes cout << "Yes" << endl
#define no cout << "No" << endl
#define YES cout << "YES" << endl
#define NO cout << "NO" << endl
#define PAI acos(-1)
// #define int long long
using ll = long long;
void umin(int &x,int y){if(x>y)x=y;}
void umax(int &x,int y){if(x<y)x=y;}

void pre_work()
{
}

void solve()
{
    double a, b;
    cin >> a >> b;
    vv<int> ans;
    int n = 25;
    while(n -- )
    {
        ans.pb(b * 2 >= 1);
        b *= 2;
        if(b >= 1) b -= 1;
    }
    for(int i = 0; i < 24; i ++)
        cout << 1;
    for(int i = 24; i >= 0; i --)
    {
        if(ans[i] == 1)
            cout << 2;
        else cout << 1;
    }
}

signed main()
{
  	IOS;
	int tt = 1;
	//cin >> tt;
	pre_work();
	while(tt --)
	{
		solve();
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3732kb

input:

0.5 0.25

output:

1111111111111111111111111111111111111111111111121

result:

ok ok

Test #2:

score: 0
Accepted
time: 0ms
memory: 3712kb

input:

1 0.75

output:

1111111111111111111111111111111111111111111111122

result:

ok ok

Test #3:

score: 0
Accepted
time: 0ms
memory: 3736kb

input:

1 0

output:

1111111111111111111111111111111111111111111111111

result:

ok ok

Test #4:

score: 0
Accepted
time: 0ms
memory: 3736kb

input:

0.361954 0.578805

output:

1111111111111111111111112111121121122121111212112

result:

ok ok

Test #5:

score: 0
Accepted
time: 1ms
memory: 3712kb

input:

0.144888 0.140086

output:

1111111111111111111111111212212121122212222111211

result:

ok ok

Test #6:

score: 0
Accepted
time: 0ms
memory: 3700kb

input:

0.514397 0.969399

output:

1111111111111111111111111111211121212121111122222

result:

ok ok

Test #7:

score: 0
Accepted
time: 0ms
memory: 3796kb

input:

0.887873 0.402213

output:

1111111111111111111111111122212212221222212211221

result:

ok ok

Test #8:

score: 0
Accepted
time: 0ms
memory: 3752kb

input:

0.152004 0.176414

output:

1111111111111111111111112222122212112121121221211

result:

ok ok

Test #9:

score: 0
Accepted
time: 0ms
memory: 3712kb

input:

0.401831 0.860762

output:

1111111111111111111111112212112221212212111222122

result:

ok ok

Test #10:

score: 0
Accepted
time: 0ms
memory: 3712kb

input:

0.580629 0.869474

output:

1111111111111111111111111211221222121211212222122

result:

ok ok

Test #11:

score: 0
Accepted
time: 0ms
memory: 3752kb

input:

0.138673 0.508844

output:

1111111111111111111111112211221122211112112111112

result:

ok ok

Test #12:

score: 0
Accepted
time: 1ms
memory: 3736kb

input:

0.027182 0.263243

output:

1111111111111111111111112112112222211122122111121

result:

ok ok

Test #13:

score: 0
Accepted
time: 0ms
memory: 3728kb

input:

0.081714 0.212216

output:

1111111111111111111111112211211222211212112212211

result:

ok ok

Test #14:

score: 0
Accepted
time: 0ms
memory: 3732kb

input:

0.562775 0.388603

output:

1111111111111111111111111112222212212222122111221

result:

ok ok

Test #15:

score: 0
Accepted
time: 0ms
memory: 3780kb

input:

0.112949 0.147503

output:

1111111111111111111111112211111221211112221211211

result:

ok ok

Test #16:

score: 0
Accepted
time: 0ms
memory: 3728kb

input:

0.800247 0.150903

output:

1111111111111111111111111112121122111121212211211

result:

ok ok

Test #17:

score: 0
Accepted
time: 1ms
memory: 3796kb

input:

0.300103 0.584619

output:

1111111111111111111111111222121122112121221212112

result:

ok ok

Test #18:

score: 0
Accepted
time: 1ms
memory: 3800kb

input:

0.844720 0.070148

output:

1111111111111111111111111111222112121222221112111

result:

ok ok

Test #19:

score: 0
Accepted
time: 0ms
memory: 3960kb

input:

0.573320 0.123035

output:

1111111111111111111111112111222112222222122222111

result:

ok ok

Test #20:

score: 0
Accepted
time: 0ms
memory: 3728kb

input:

0.467281 0.231366

output:

1111111111111111111111111212211221212221122122211

result:

ok ok

Test #21:

score: 0
Accepted
time: 0ms
memory: 3940kb

input:

0.264769 0.373434

output:

1111111111111111111111112122221212112211222222121

result:

ok ok

Test #22:

score: 0
Accepted
time: 1ms
memory: 3760kb

input:

0.689729 0.570712

output:

1111111111111111111111111122212111212211112112112

result:

ok ok

Test #23:

score: 0
Accepted
time: 1ms
memory: 3708kb

input:

0.747218 0.312573

output:

1111111111111111111111112111211221121111111112121

result:

ok ok

Test #24:

score: 0
Accepted
time: 0ms
memory: 3776kb

input:

0.215052 0.203677

output:

1111111111111111111111111212212111121121111212211

result:

ok ok

Test #25:

score: 0
Accepted
time: 1ms
memory: 3796kb

input:

0.607834 0.733102

output:

1111111111111111111111112121121121122121222122212

result:

ok ok

Test #26:

score: 0
Accepted
time: 0ms
memory: 3788kb

input:

0.516860 0.252876

output:

1111111111111111111111111221222211122221211111121

result:

ok ok

Test #27:

score: 0
Accepted
time: 0ms
memory: 3736kb

input:

0.955285 0.457773

output:

1111111111111111111111111112221121111221121212221

result:

ok ok

Test #28:

score: 0
Accepted
time: 0ms
memory: 3716kb

input:

0.156178 0.353262

output:

1111111111111111111111112111112212222122112122121

result:

ok ok

Test #29:

score: 0
Accepted
time: 0ms
memory: 3760kb

input:

0.398701 0.040258

output:

1111111111111111111111111211221211222112112121111

result:

ok ok

Test #30:

score: 0
Accepted
time: 0ms
memory: 3680kb

input:

0.973859 0.000184

output:

1111111111111111111111111222211111122111111111111

result:

ok ok

Test #31:

score: 0
Accepted
time: 0ms
memory: 3780kb

input:

0.882213 0.556709

output:

1111111111111111111111111221222211121111212221112

result:

ok ok

Test #32:

score: 0
Accepted
time: 0ms
memory: 3888kb

input:

0.263822 0.460984

output:

1111111111111111111111111112211112211111112212221

result:

ok ok

Test #33:

score: 0
Accepted
time: 0ms
memory: 3804kb

input:

0.443432 0.034841

output:

1111111111111111111111112122121212212122211121111

result:

ok ok