QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#755607#9550. The Empressucup-team3802#AC ✓1ms3924kbC++231.3kb2024-11-16 17:44:492024-11-16 17:44:50

Judging History

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

  • [2024-11-16 17:44:50]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:3924kb
  • [2024-11-16 17:44:49]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define rep(i, l, r) for (ll i = (l); i < (r); ++i)
#define all(x) (x).begin(), (x).end()
using ll = long long;
using pl = pair<ll,ll>;
using vl = vector<ll>;
using vvl = vector<vector<ll>>;
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

vector<string> ans(ll n,int now){
    if(n==1){
        vector<string> zans(0);
        return zans;
    }
    if(n%4==3){
        auto zans=ans(n/2,now+1);
        zans.push_back("POP "+to_string(now)+" GOTO "+to_string(zans.size()+2)+"; PUSH "+to_string(now)+" GOTO "+to_string(1));
        return zans;
    }
    else{
        auto zans=ans((n-2)/2,now+1);
        zans.push_back("POP "+to_string(now)+" GOTO "+to_string(zans.size()+2)+"; PUSH "+to_string(now)+" GOTO "+to_string(1));
        zans.push_back("POP "+to_string(111)+" GOTO "+to_string(zans.size()+2)+"; PUSH "+to_string(111)+" GOTO "+to_string(zans.size()+1));
        return zans;
    }
}
int main() {
    ll n;
    cin>>n;
    if(n==1){
        cout<<1<<endl;
        cout<<"HALT; PUSH 1 GOTO 1"<<endl;
        return 0;
    }
    auto ansa=ans(n,1);
    ansa.push_back("HALT; PUSH 1 GOTO 1");
    cout<<ansa.size()<<endl;
    rep(i,0,ansa.size()){
        cout<<ansa[i]<<endl;
    }
}


这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3660kb

input:

1

output:

1
HALT; PUSH 1 GOTO 1

result:

ok x=1

Test #2:

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

input:

5

output:

3
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
HALT; PUSH 1 GOTO 1

result:

ok x=5

Test #3:

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

input:

17

output:

5
POP 3 GOTO 2; PUSH 3 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 1 GOTO 4; PUSH 1 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
HALT; PUSH 1 GOTO 1

result:

ok x=17

Test #4:

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

input:

19260817

output:

35
POP 23 GOTO 2; PUSH 23 GOTO 1
POP 22 GOTO 3; PUSH 22 GOTO 1
POP 21 GOTO 4; PUSH 21 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 20 GOTO 6; PUSH 20 GOTO 1
POP 19 GOTO 7; PUSH 19 GOTO 1
POP 18 GOTO 8; PUSH 18 GOTO 1
POP 111 GOTO 9; PUSH 111 GOTO 8
POP 17 GOTO 10; PUSH 17 GOTO 1
POP 16 GOTO 11; PUSH 1...

result:

ok x=19260817

Test #5:

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

input:

1145141919

output:

40
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 28 GOTO 3; PUSH 28 GOTO 1
POP 27 GOTO 4; PUSH 27 GOTO 1
POP 26 GOTO 5; PUSH 26 GOTO 1
POP 111 GOTO 6; PUSH 111 GOTO 5
POP 25 GOTO 7; PUSH 25 GOTO 1
POP 24 GOTO 8; PUSH 24 GOTO 1
POP 23 GOTO 9; PUSH 23 GOTO 1
POP 22 GOTO 10; PUSH 22 GOTO 1
POP 111 GOTO 11; PUSH 11...

result:

ok x=1145141919

Test #6:

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

input:

2147483647

output:

31
POP 30 GOTO 2; PUSH 30 GOTO 1
POP 29 GOTO 3; PUSH 29 GOTO 1
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 27 GOTO 5; PUSH 27 GOTO 1
POP 26 GOTO 6; PUSH 26 GOTO 1
POP 25 GOTO 7; PUSH 25 GOTO 1
POP 24 GOTO 8; PUSH 24 GOTO 1
POP 23 GOTO 9; PUSH 23 GOTO 1
POP 22 GOTO 10; PUSH 22 GOTO 1
POP 21 GOTO 11; PUSH 21 GO...

result:

ok x=2147483647

Test #7:

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

input:

1868665701

output:

46
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 27 GOTO 5; PUSH 27 GOTO 1
POP 111 GOTO 6; PUSH 111 GOTO 5
POP 26 GOTO 7; PUSH 26 GOTO 1
POP 111 GOTO 8; PUSH 111 GOTO 7
POP 25 GOTO 9; PUSH 25 GOTO 1
POP 111 GOTO 10; PUSH 111 GOTO 9
POP 24 GOTO 11; PU...

result:

ok x=1868665701

Test #8:

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

input:

2102547599

output:

43
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 27 GOTO 6; PUSH 27 GOTO 1
POP 111 GOTO 7; PUSH 111 GOTO 6
POP 26 GOTO 8; PUSH 26 GOTO 1
POP 111 GOTO 9; PUSH 111 GOTO 8
POP 25 GOTO 10; PUSH 25 GOTO 1
POP 24 GOTO 11; PU...

result:

ok x=2102547599

Test #9:

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

input:

2054530275

output:

46
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 27 GOTO 6; PUSH 27 GOTO 1
POP 111 GOTO 7; PUSH 111 GOTO 6
POP 26 GOTO 8; PUSH 26 GOTO 1
POP 25 GOTO 9; PUSH 25 GOTO 1
POP 111 GOTO 10; PUSH 111 GOTO 9
POP 24 GOTO 11; PU...

result:

ok x=2054530275

Test #10:

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

input:

1953685475

output:

48
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 27 GOTO 6; PUSH 27 GOTO 1
POP 26 GOTO 7; PUSH 26 GOTO 1
POP 111 GOTO 8; PUSH 111 GOTO 7
POP 25 GOTO 9; PUSH 25 GOTO 1
POP 24 GOTO 10; PUSH 24 GOTO 1
POP 23 GOTO 11; PUSH...

result:

ok x=1953685475

Test #11:

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

input:

2119017059

output:

45
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 27 GOTO 6; PUSH 27 GOTO 1
POP 111 GOTO 7; PUSH 111 GOTO 6
POP 26 GOTO 8; PUSH 26 GOTO 1
POP 111 GOTO 9; PUSH 111 GOTO 8
POP 25 GOTO 10; PUSH 25 GOTO 1
POP 111 GOTO 11; P...

result:

ok x=2119017059

Test #12:

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

input:

1911337379

output:

45
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 27 GOTO 6; PUSH 27 GOTO 1
POP 26 GOTO 7; PUSH 26 GOTO 1
POP 25 GOTO 8; PUSH 25 GOTO 1
POP 24 GOTO 9; PUSH 24 GOTO 1
POP 111 GOTO 10; PUSH 111 GOTO 9
POP 23 GOTO 11; PUSH...

result:

ok x=1911337379

Test #13:

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

input:

887618459

output:

48
POP 28 GOTO 2; PUSH 28 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 27 GOTO 4; PUSH 27 GOTO 1
POP 26 GOTO 5; PUSH 26 GOTO 1
POP 111 GOTO 6; PUSH 111 GOTO 5
POP 25 GOTO 7; PUSH 25 GOTO 1
POP 24 GOTO 8; PUSH 24 GOTO 1
POP 23 GOTO 9; PUSH 23 GOTO 1
POP 111 GOTO 10; PUSH 111 GOTO 9
POP 22 GOTO 11; PUSH...

result:

ok x=887618459

Test #14:

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

input:

831117597

output:

43
POP 28 GOTO 2; PUSH 28 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 27 GOTO 4; PUSH 27 GOTO 1
POP 26 GOTO 5; PUSH 26 GOTO 1
POP 25 GOTO 6; PUSH 25 GOTO 1
POP 24 GOTO 7; PUSH 24 GOTO 1
POP 111 GOTO 8; PUSH 111 GOTO 7
POP 23 GOTO 9; PUSH 23 GOTO 1
POP 111 GOTO 10; PUSH 111 GOTO 9
POP 22 GOTO 11; PUSH...

result:

ok x=831117597

Test #15:

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

input:

1820253559

output:

49
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 27 GOTO 5; PUSH 27 GOTO 1
POP 111 GOTO 6; PUSH 111 GOTO 5
POP 26 GOTO 7; PUSH 26 GOTO 1
POP 111 GOTO 8; PUSH 111 GOTO 7
POP 25 GOTO 9; PUSH 25 GOTO 1
POP 24 GOTO 10; PUSH 24 GOTO 1
POP 23 GOTO 11; PUSH...

result:

ok x=1820253559

Test #16:

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

input:

1563399651

output:

47
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 28 GOTO 3; PUSH 28 GOTO 1
POP 111 GOTO 4; PUSH 111 GOTO 3
POP 27 GOTO 5; PUSH 27 GOTO 1
POP 111 GOTO 6; PUSH 111 GOTO 5
POP 26 GOTO 7; PUSH 26 GOTO 1
POP 111 GOTO 8; PUSH 111 GOTO 7
POP 25 GOTO 9; PUSH 25 GOTO 1
POP 24 GOTO 10; PUSH 24 GOTO 1
POP 111 GOTO 11; PUS...

result:

ok x=1563399651

Test #17:

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

input:

1631350977

output:

42
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 27 GOTO 5; PUSH 27 GOTO 1
POP 26 GOTO 6; PUSH 26 GOTO 1
POP 25 GOTO 7; PUSH 25 GOTO 1
POP 24 GOTO 8; PUSH 24 GOTO 1
POP 111 GOTO 9; PUSH 111 GOTO 8
POP 23 GOTO 10; PUSH 23 GOTO 1
POP 22 GOTO 11; PUSH 2...

result:

ok x=1631350977

Test #18:

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

input:

1897574279

output:

44
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 27 GOTO 6; PUSH 27 GOTO 1
POP 26 GOTO 7; PUSH 26 GOTO 1
POP 25 GOTO 8; PUSH 25 GOTO 1
POP 24 GOTO 9; PUSH 24 GOTO 1
POP 111 GOTO 10; PUSH 111 GOTO 9
POP 23 GOTO 11; PUSH...

result:

ok x=1897574279

Test #19:

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

input:

450973351

output:

41
POP 27 GOTO 2; PUSH 27 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 26 GOTO 4; PUSH 26 GOTO 1
POP 25 GOTO 5; PUSH 25 GOTO 1
POP 111 GOTO 6; PUSH 111 GOTO 5
POP 24 GOTO 7; PUSH 24 GOTO 1
POP 23 GOTO 8; PUSH 23 GOTO 1
POP 111 GOTO 9; PUSH 111 GOTO 8
POP 22 GOTO 10; PUSH 22 GOTO 1
POP 111 GOTO 11; PUS...

result:

ok x=450973351

Test #20:

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

input:

1212949423

output:

40
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 28 GOTO 3; PUSH 28 GOTO 1
POP 27 GOTO 4; PUSH 27 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 26 GOTO 6; PUSH 26 GOTO 1
POP 25 GOTO 7; PUSH 25 GOTO 1
POP 24 GOTO 8; PUSH 24 GOTO 1
POP 23 GOTO 9; PUSH 23 GOTO 1
POP 22 GOTO 10; PUSH 22 GOTO 1
POP 111 GOTO 11; PUSH 11...

result:

ok x=1212949423

Test #21:

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

input:

1800664165

output:

47
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 27 GOTO 5; PUSH 27 GOTO 1
POP 111 GOTO 6; PUSH 111 GOTO 5
POP 26 GOTO 7; PUSH 26 GOTO 1
POP 25 GOTO 8; PUSH 25 GOTO 1
POP 111 GOTO 9; PUSH 111 GOTO 8
POP 24 GOTO 10; PUSH 24 GOTO 1
POP 111 GOTO 11; PUS...

result:

ok x=1800664165

Test #22:

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

input:

2083340735

output:

42
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 27 GOTO 6; PUSH 27 GOTO 1
POP 111 GOTO 7; PUSH 111 GOTO 6
POP 26 GOTO 8; PUSH 26 GOTO 1
POP 111 GOTO 9; PUSH 111 GOTO 8
POP 25 GOTO 10; PUSH 25 GOTO 1
POP 24 GOTO 11; PU...

result:

ok x=2083340735

Test #23:

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

input:

1989353363

output:

46
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 27 GOTO 6; PUSH 27 GOTO 1
POP 26 GOTO 7; PUSH 26 GOTO 1
POP 111 GOTO 8; PUSH 111 GOTO 7
POP 25 GOTO 9; PUSH 25 GOTO 1
POP 111 GOTO 10; PUSH 111 GOTO 9
POP 24 GOTO 11; PU...

result:

ok x=1989353363

Test #24:

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

input:

1686030751

output:

44
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 27 GOTO 5; PUSH 27 GOTO 1
POP 26 GOTO 6; PUSH 26 GOTO 1
POP 111 GOTO 7; PUSH 111 GOTO 6
POP 25 GOTO 8; PUSH 25 GOTO 1
POP 24 GOTO 9; PUSH 24 GOTO 1
POP 23 GOTO 10; PUSH 23 GOTO 1
POP 22 GOTO 11; PUSH 2...

result:

ok x=1686030751

Test #25:

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

input:

483234157

output:

43
POP 27 GOTO 2; PUSH 27 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 26 GOTO 4; PUSH 26 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 25 GOTO 6; PUSH 25 GOTO 1
POP 24 GOTO 7; PUSH 24 GOTO 1
POP 23 GOTO 8; PUSH 23 GOTO 1
POP 111 GOTO 9; PUSH 111 GOTO 8
POP 22 GOTO 10; PUSH 22 GOTO 1
POP 111 GOTO 11; PUS...

result:

ok x=483234157

Test #26:

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

input:

1784967647

output:

43
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 27 GOTO 5; PUSH 27 GOTO 1
POP 111 GOTO 6; PUSH 111 GOTO 5
POP 26 GOTO 7; PUSH 26 GOTO 1
POP 25 GOTO 8; PUSH 25 GOTO 1
POP 111 GOTO 9; PUSH 111 GOTO 8
POP 24 GOTO 10; PUSH 24 GOTO 1
POP 23 GOTO 11; PUSH...

result:

ok x=1784967647

Test #27:

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

input:

1052131125

output:

48
POP 28 GOTO 2; PUSH 28 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 27 GOTO 4; PUSH 27 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 26 GOTO 6; PUSH 26 GOTO 1
POP 111 GOTO 7; PUSH 111 GOTO 6
POP 25 GOTO 8; PUSH 25 GOTO 1
POP 111 GOTO 9; PUSH 111 GOTO 8
POP 24 GOTO 10; PUSH 24 GOTO 1
POP 23 GOTO 11; PU...

result:

ok x=1052131125

Test #28:

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

input:

673034421

output:

42
POP 28 GOTO 2; PUSH 28 GOTO 1
POP 27 GOTO 3; PUSH 27 GOTO 1
POP 111 GOTO 4; PUSH 111 GOTO 3
POP 26 GOTO 5; PUSH 26 GOTO 1
POP 25 GOTO 6; PUSH 25 GOTO 1
POP 24 GOTO 7; PUSH 24 GOTO 1
POP 23 GOTO 8; PUSH 23 GOTO 1
POP 22 GOTO 9; PUSH 22 GOTO 1
POP 21 GOTO 10; PUSH 21 GOTO 1
POP 20 GOTO 11; PUSH 20 ...

result:

ok x=673034421

Test #29:

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

input:

1136250939

output:

44
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 28 GOTO 3; PUSH 28 GOTO 1
POP 27 GOTO 4; PUSH 27 GOTO 1
POP 26 GOTO 5; PUSH 26 GOTO 1
POP 25 GOTO 6; PUSH 25 GOTO 1
POP 111 GOTO 7; PUSH 111 GOTO 6
POP 24 GOTO 8; PUSH 24 GOTO 1
POP 111 GOTO 9; PUSH 111 GOTO 8
POP 23 GOTO 10; PUSH 23 GOTO 1
POP 111 GOTO 11; PUSH ...

result:

ok x=1136250939

Test #30:

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

input:

1434678339

output:

42
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 28 GOTO 3; PUSH 28 GOTO 1
POP 111 GOTO 4; PUSH 111 GOTO 3
POP 27 GOTO 5; PUSH 27 GOTO 1
POP 26 GOTO 6; PUSH 26 GOTO 1
POP 111 GOTO 7; PUSH 111 GOTO 6
POP 25 GOTO 8; PUSH 25 GOTO 1
POP 24 GOTO 9; PUSH 24 GOTO 1
POP 111 GOTO 10; PUSH 111 GOTO 9
POP 23 GOTO 11; PUSH...

result:

ok x=1434678339

Test #31:

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

input:

174274079

output:

37
POP 26 GOTO 2; PUSH 26 GOTO 1
POP 25 GOTO 3; PUSH 25 GOTO 1
POP 111 GOTO 4; PUSH 111 GOTO 3
POP 24 GOTO 5; PUSH 24 GOTO 1
POP 23 GOTO 6; PUSH 23 GOTO 1
POP 22 GOTO 7; PUSH 22 GOTO 1
POP 111 GOTO 8; PUSH 111 GOTO 7
POP 21 GOTO 9; PUSH 21 GOTO 1
POP 111 GOTO 10; PUSH 111 GOTO 9
POP 20 GOTO 11; PUSH...

result:

ok x=174274079

Test #32:

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

input:

1911998229

output:

47
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 27 GOTO 6; PUSH 27 GOTO 1
POP 26 GOTO 7; PUSH 26 GOTO 1
POP 25 GOTO 8; PUSH 25 GOTO 1
POP 24 GOTO 9; PUSH 24 GOTO 1
POP 111 GOTO 10; PUSH 111 GOTO 9
POP 23 GOTO 11; PUSH...

result:

ok x=1911998229

Test #33:

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

input:

441665295

output:

39
POP 27 GOTO 2; PUSH 27 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 26 GOTO 4; PUSH 26 GOTO 1
POP 25 GOTO 5; PUSH 25 GOTO 1
POP 111 GOTO 6; PUSH 111 GOTO 5
POP 24 GOTO 7; PUSH 24 GOTO 1
POP 23 GOTO 8; PUSH 23 GOTO 1
POP 22 GOTO 9; PUSH 22 GOTO 1
POP 111 GOTO 10; PUSH 111 GOTO 9
POP 21 GOTO 11; PUSH...

result:

ok x=441665295

Test #34:

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

input:

1325107907

output:

46
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 28 GOTO 3; PUSH 28 GOTO 1
POP 27 GOTO 4; PUSH 27 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 26 GOTO 6; PUSH 26 GOTO 1
POP 111 GOTO 7; PUSH 111 GOTO 6
POP 25 GOTO 8; PUSH 25 GOTO 1
POP 111 GOTO 9; PUSH 111 GOTO 8
POP 24 GOTO 10; PUSH 24 GOTO 1
POP 23 GOTO 11; PUSH...

result:

ok x=1325107907

Test #35:

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

input:

264691101

output:

45
POP 26 GOTO 2; PUSH 26 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 25 GOTO 4; PUSH 25 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 24 GOTO 6; PUSH 24 GOTO 1
POP 111 GOTO 7; PUSH 111 GOTO 6
POP 23 GOTO 8; PUSH 23 GOTO 1
POP 111 GOTO 9; PUSH 111 GOTO 8
POP 22 GOTO 10; PUSH 22 GOTO 1
POP 111 GOTO 11; P...

result:

ok x=264691101

Test #36:

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

input:

1655988757

output:

42
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 27 GOTO 5; PUSH 27 GOTO 1
POP 26 GOTO 6; PUSH 26 GOTO 1
POP 25 GOTO 7; PUSH 25 GOTO 1
POP 111 GOTO 8; PUSH 111 GOTO 7
POP 24 GOTO 9; PUSH 24 GOTO 1
POP 23 GOTO 10; PUSH 23 GOTO 1
POP 111 GOTO 11; PUSH ...

result:

ok x=1655988757

Test #37:

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

input:

1912613857

output:

41
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 27 GOTO 6; PUSH 27 GOTO 1
POP 26 GOTO 7; PUSH 26 GOTO 1
POP 25 GOTO 8; PUSH 25 GOTO 1
POP 111 GOTO 9; PUSH 111 GOTO 8
POP 24 GOTO 10; PUSH 24 GOTO 1
POP 23 GOTO 11; PUSH...

result:

ok x=1912613857

Test #38:

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

input:

471758205

output:

45
POP 27 GOTO 2; PUSH 27 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 26 GOTO 4; PUSH 26 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 25 GOTO 6; PUSH 25 GOTO 1
POP 24 GOTO 7; PUSH 24 GOTO 1
POP 23 GOTO 8; PUSH 23 GOTO 1
POP 22 GOTO 9; PUSH 22 GOTO 1
POP 21 GOTO 10; PUSH 21 GOTO 1
POP 20 GOTO 11; PUSH 2...

result:

ok x=471758205

Test #39:

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

input:

1295394655

output:

43
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 28 GOTO 3; PUSH 28 GOTO 1
POP 27 GOTO 4; PUSH 27 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 26 GOTO 6; PUSH 26 GOTO 1
POP 111 GOTO 7; PUSH 111 GOTO 6
POP 25 GOTO 8; PUSH 25 GOTO 1
POP 24 GOTO 9; PUSH 24 GOTO 1
POP 111 GOTO 10; PUSH 111 GOTO 9
POP 23 GOTO 11; PUSH...

result:

ok x=1295394655

Test #40:

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

input:

1734993785

output:

49
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 27 GOTO 5; PUSH 27 GOTO 1
POP 26 GOTO 6; PUSH 26 GOTO 1
POP 111 GOTO 7; PUSH 111 GOTO 6
POP 25 GOTO 8; PUSH 25 GOTO 1
POP 111 GOTO 9; PUSH 111 GOTO 8
POP 24 GOTO 10; PUSH 24 GOTO 1
POP 111 GOTO 11; PUS...

result:

ok x=1734993785

Test #41:

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

input:

986893495

output:

44
POP 28 GOTO 2; PUSH 28 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 27 GOTO 4; PUSH 27 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 26 GOTO 6; PUSH 26 GOTO 1
POP 25 GOTO 7; PUSH 25 GOTO 1
POP 111 GOTO 8; PUSH 111 GOTO 7
POP 24 GOTO 9; PUSH 24 GOTO 1
POP 23 GOTO 10; PUSH 23 GOTO 1
POP 111 GOTO 11; PUS...

result:

ok x=986893495

Test #42:

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

input:

105826293

output:

42
POP 25 GOTO 2; PUSH 25 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 24 GOTO 4; PUSH 24 GOTO 1
POP 23 GOTO 5; PUSH 23 GOTO 1
POP 22 GOTO 6; PUSH 22 GOTO 1
POP 111 GOTO 7; PUSH 111 GOTO 6
POP 21 GOTO 8; PUSH 21 GOTO 1
POP 20 GOTO 9; PUSH 20 GOTO 1
POP 19 GOTO 10; PUSH 19 GOTO 1
POP 111 GOTO 11; PUSH ...

result:

ok x=105826293

Test #43:

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

input:

3

output:

2
POP 1 GOTO 2; PUSH 1 GOTO 1
HALT; PUSH 1 GOTO 1

result:

ok x=3

Test #44:

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

input:

7

output:

3
POP 2 GOTO 2; PUSH 2 GOTO 1
POP 1 GOTO 3; PUSH 1 GOTO 1
HALT; PUSH 1 GOTO 1

result:

ok x=7

Test #45:

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

input:

9

output:

4
POP 2 GOTO 2; PUSH 2 GOTO 1
POP 1 GOTO 3; PUSH 1 GOTO 1
POP 111 GOTO 4; PUSH 111 GOTO 3
HALT; PUSH 1 GOTO 1

result:

ok x=9

Test #46:

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

input:

11

output:

4
POP 2 GOTO 2; PUSH 2 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 1 GOTO 4; PUSH 1 GOTO 1
HALT; PUSH 1 GOTO 1

result:

ok x=11

Test #47:

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

input:

13

output:

5
POP 2 GOTO 2; PUSH 2 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 1 GOTO 4; PUSH 1 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
HALT; PUSH 1 GOTO 1

result:

ok x=13

Test #48:

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

input:

15

output:

4
POP 3 GOTO 2; PUSH 3 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 1 GOTO 4; PUSH 1 GOTO 1
HALT; PUSH 1 GOTO 1

result:

ok x=15

Test #49:

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

input:

2147483643

output:

58
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 27 GOTO 6; PUSH 27 GOTO 1
POP 111 GOTO 7; PUSH 111 GOTO 6
POP 26 GOTO 8; PUSH 26 GOTO 1
POP 111 GOTO 9; PUSH 111 GOTO 8
POP 25 GOTO 10; PUSH 25 GOTO 1
POP 111 GOTO 11; P...

result:

ok x=2147483643

Test #50:

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

input:

2147483645

output:

59
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 111 GOTO 3; PUSH 111 GOTO 2
POP 28 GOTO 4; PUSH 28 GOTO 1
POP 111 GOTO 5; PUSH 111 GOTO 4
POP 27 GOTO 6; PUSH 27 GOTO 1
POP 111 GOTO 7; PUSH 111 GOTO 6
POP 26 GOTO 8; PUSH 26 GOTO 1
POP 111 GOTO 9; PUSH 111 GOTO 8
POP 25 GOTO 10; PUSH 25 GOTO 1
POP 111 GOTO 11; P...

result:

ok x=2147483645

Test #51:

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

input:

1073741827

output:

31
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 28 GOTO 3; PUSH 28 GOTO 1
POP 27 GOTO 4; PUSH 27 GOTO 1
POP 26 GOTO 5; PUSH 26 GOTO 1
POP 25 GOTO 6; PUSH 25 GOTO 1
POP 24 GOTO 7; PUSH 24 GOTO 1
POP 23 GOTO 8; PUSH 23 GOTO 1
POP 22 GOTO 9; PUSH 22 GOTO 1
POP 21 GOTO 10; PUSH 21 GOTO 1
POP 20 GOTO 11; PUSH 20 GO...

result:

ok x=1073741827

Test #52:

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

input:

1073741825

output:

31
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 28 GOTO 3; PUSH 28 GOTO 1
POP 27 GOTO 4; PUSH 27 GOTO 1
POP 26 GOTO 5; PUSH 26 GOTO 1
POP 25 GOTO 6; PUSH 25 GOTO 1
POP 24 GOTO 7; PUSH 24 GOTO 1
POP 23 GOTO 8; PUSH 23 GOTO 1
POP 22 GOTO 9; PUSH 22 GOTO 1
POP 21 GOTO 10; PUSH 21 GOTO 1
POP 20 GOTO 11; PUSH 20 GO...

result:

ok x=1073741825

Test #53:

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

input:

1073741823

output:

30
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 28 GOTO 3; PUSH 28 GOTO 1
POP 27 GOTO 4; PUSH 27 GOTO 1
POP 26 GOTO 5; PUSH 26 GOTO 1
POP 25 GOTO 6; PUSH 25 GOTO 1
POP 24 GOTO 7; PUSH 24 GOTO 1
POP 23 GOTO 8; PUSH 23 GOTO 1
POP 22 GOTO 9; PUSH 22 GOTO 1
POP 21 GOTO 10; PUSH 21 GOTO 1
POP 20 GOTO 11; PUSH 20 GO...

result:

ok x=1073741823

Test #54:

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

input:

536870967

output:

32
POP 28 GOTO 2; PUSH 28 GOTO 1
POP 27 GOTO 3; PUSH 27 GOTO 1
POP 26 GOTO 4; PUSH 26 GOTO 1
POP 25 GOTO 5; PUSH 25 GOTO 1
POP 24 GOTO 6; PUSH 24 GOTO 1
POP 23 GOTO 7; PUSH 23 GOTO 1
POP 22 GOTO 8; PUSH 22 GOTO 1
POP 21 GOTO 9; PUSH 21 GOTO 1
POP 20 GOTO 10; PUSH 20 GOTO 1
POP 19 GOTO 11; PUSH 19 GO...

result:

ok x=536870967

Test #55:

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

input:

536870965

output:

33
POP 28 GOTO 2; PUSH 28 GOTO 1
POP 27 GOTO 3; PUSH 27 GOTO 1
POP 26 GOTO 4; PUSH 26 GOTO 1
POP 25 GOTO 5; PUSH 25 GOTO 1
POP 24 GOTO 6; PUSH 24 GOTO 1
POP 23 GOTO 7; PUSH 23 GOTO 1
POP 22 GOTO 8; PUSH 22 GOTO 1
POP 21 GOTO 9; PUSH 21 GOTO 1
POP 20 GOTO 10; PUSH 20 GOTO 1
POP 19 GOTO 11; PUSH 19 GO...

result:

ok x=536870965

Test #56:

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

input:

1073741881

output:

34
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 28 GOTO 3; PUSH 28 GOTO 1
POP 27 GOTO 4; PUSH 27 GOTO 1
POP 26 GOTO 5; PUSH 26 GOTO 1
POP 25 GOTO 6; PUSH 25 GOTO 1
POP 24 GOTO 7; PUSH 24 GOTO 1
POP 23 GOTO 8; PUSH 23 GOTO 1
POP 22 GOTO 9; PUSH 22 GOTO 1
POP 21 GOTO 10; PUSH 21 GOTO 1
POP 20 GOTO 11; PUSH 20 GO...

result:

ok x=1073741881

Test #57:

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

input:

1073741879

output:

33
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 28 GOTO 3; PUSH 28 GOTO 1
POP 27 GOTO 4; PUSH 27 GOTO 1
POP 26 GOTO 5; PUSH 26 GOTO 1
POP 25 GOTO 6; PUSH 25 GOTO 1
POP 24 GOTO 7; PUSH 24 GOTO 1
POP 23 GOTO 8; PUSH 23 GOTO 1
POP 22 GOTO 9; PUSH 22 GOTO 1
POP 21 GOTO 10; PUSH 21 GOTO 1
POP 20 GOTO 11; PUSH 20 GO...

result:

ok x=1073741879

Test #58:

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

input:

1073741877

output:

34
POP 29 GOTO 2; PUSH 29 GOTO 1
POP 28 GOTO 3; PUSH 28 GOTO 1
POP 27 GOTO 4; PUSH 27 GOTO 1
POP 26 GOTO 5; PUSH 26 GOTO 1
POP 25 GOTO 6; PUSH 25 GOTO 1
POP 24 GOTO 7; PUSH 24 GOTO 1
POP 23 GOTO 8; PUSH 23 GOTO 1
POP 22 GOTO 9; PUSH 22 GOTO 1
POP 21 GOTO 10; PUSH 21 GOTO 1
POP 20 GOTO 11; PUSH 20 GO...

result:

ok x=1073741877

Extra Test:

score: 0
Extra Test Passed