QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#755251#9550. The Empressucup-team5840#AC ✓1ms4116kbC++233.6kb2024-11-16 16:51:362024-11-16 16:51:36

Judging History

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

  • [2024-11-16 16:51:36]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:4116kb
  • [2024-11-16 16:51:36]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
struct Interpreter
{
	struct Instruction
	{
		int a,x,b,y;
		enum class Type:uint8_t
		{
			POP,
			HALT
		}ty;
		static Instruction parse(string_view s)
		{
			Instruction res{.ty=(Instruction::Type)-1};
			if(s.starts_with("POP"))
			{
				res.ty=Instruction::Type::POP;
				sscanf(s.begin(),"POP %d GOTO %d; PUSH %d GOTO %d",&res.a,&res.x,&res.b,&res.y);
			}
			if(s.starts_with("HALT"))
			{
				res.ty=Instruction::Type::HALT;
				sscanf(s.begin(),"HALT; PUSH %d GOTO %d",&res.b,&res.y);
			}
			// --res.x;--res.y;
			return res;
		}
		friend string to_string(Instruction i)
		{
			using namespace std::string_literals;
			char buf[200];
			if(i.ty==Instruction::Type::POP)
				sprintf(buf,"POP %d GOTO %d; PUSH %d GOTO %d",i.a,i.x,i.b,i.y);
			if(i.ty==Instruction::Type::HALT)
				sprintf(buf,"HALT; PUSH %d GOTO %d",i.b,i.y);
			return buf;
		}
	};
	vector<int>stack;
	int execute(Instruction i)
	{
		switch(i.ty)
		{
			case Instruction::Type::POP:
			{
				if(!stack.empty()&&stack.back()==i.a)
				{
					stack.pop_back();
					return i.x;
					// pc+=x;
				}
				else
				{
					stack.push_back(i.b);
					return i.y;
					// pc+=i.y;
				}
				return false;
			}break;
			case Instruction::Type::HALT:
			{
				if(stack.empty())
				{
					return -1;
				}
				else
				{
					stack.push_back(i.b);
					return i.y;
				}
			}break;
			default:return -1e9;
		}
	}
	array<int,2> execute(vector<Instruction>const&ins)
	{
		int pc=0,cnt=0;
		while(pc!=-1)
		{
			// cerr<<"pc "<<pc<<'\n';
			pc=execute(ins[pc]);
			++cnt;
		}
		return {cnt,pc};
	}
	void clear(){{stack.clear();}}
};
using Instruction=Interpreter::Instruction;
ostream &operator<<(ostream &os,Instruction i)
{
	return os<<to_string(i);
}
template<typename T>
T to_abs(T&& x)
{
	int j=0;
	for(auto &i:x)
	{
		i.x+=j;
		i.y+=j;
		++j;
	}
	return x;
}
list<Instruction>construct(int n)
{
	static int cnt=1;
	assert(n%2==0);
	if(n==0)
		return {};
	if(n==2)
	{
		int now=cnt++;
		Instruction x{.a=now,.x=1,.b=now,.y=0,.ty=Instruction::Type::POP};
		return {x};
	}
	// cerr<<n<<'\n';
	if(n>2)
	{
		list<Instruction>res;
		if(n%4==2)
		{
			res=construct((n-2)/2);
			int now=cnt++;
			res.push_back({.a=now,.x=1,.b=now,.y=-(int)res.size(),.ty=Instruction::Type::POP});
		}
		else
		{
			res=construct((n-4)/2);
			int now=cnt++;
			res.push_back({.a=now,.x=1,.b=now,.y=-(int)res.size(),.ty=Instruction::Type::POP});
			res.splice(res.end(),construct(2));
		}
		return res;
	}
}
auto exec(list<Instruction>prog)
{
	Interpreter p;
	return p.execute({prog.begin(),prog.end()})[0];
}
int main()
{
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	// int n;
	// cin>>n;
	// vector<Interpreter::Instruction>prog;
	// string s;
	// getline(cin,s);
	// for(int i=0;i<n;++i)
	// {
	// 	getline(cin,s);
	// 	// cerr<<s<<'\n';
	// 	prog.push_back(Interpreter::Instruction::parse(s));
	// }
	// for(auto i:prog)
	// {
	// 	--i.x;
	// 	--i.y;
	// }
	// for(int i=0;i<n;++i)
	// 	cerr<<prog[i]<<'\n';
	// cout<<v.execute(prog)[0]<<'\n';
	int k;
	cin>>k;
	auto res=construct(k-1);
	res.push_back({.a=1,.x=0,.b=1,.y=0,.ty=Instruction::Type::HALT});
	res=to_abs(move(res));
	// cerr<<"exec: "<<exec(res)<<'\n';
	for(auto &i:res)
	{
		i.x++;
		i.y++;
	}
	cout<<res.size()<<'\n';
	for(auto i:res)
		cout<<i<<'\n';
	return 0;
}
// 5
// POP 1 GOTO 2; PUSH 1 GOTO 2
// HALT; PUSH 1 GOTO 3
// POP 1 GOTO 4; PUSH 2 GOTO 4
// POP 1 GOTO 2; PUSH 2 GOTO 4
// HALT; PUSH 99 GOTO 4

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

详细

Test #1:

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

input:

1

output:

1
HALT; PUSH 1 GOTO 1

result:

ok x=1

Test #2:

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

input:

5

output:

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

result:

ok x=5

Test #3:

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

input:

17

output:

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

result:

ok x=17

Test #4:

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

input:

19260817

output:

35
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 8
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=19260817

Test #5:

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

input:

1145141919

output:

40
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 5
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 10
POP 11 GOTO ...

result:

ok x=1145141919

Test #6:

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

input:

2147483647

output:

31
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=2147483647

Test #7:

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

input:

1868665701

output:

46
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 5
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 7
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 9
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1868665701

Test #8:

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

input:

2102547599

output:

43
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 6
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 8
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=2102547599

Test #9:

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

input:

2054530275

output:

46
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 6
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 9
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=2054530275

Test #10:

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

input:

1953685475

output:

48
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 7
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1953685475

Test #11:

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

input:

2119017059

output:

45
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 6
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 8
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 10
POP 11 GOTO ...

result:

ok x=2119017059

Test #12:

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

input:

1911337379

output:

45
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 9
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1911337379

Test #13:

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

input:

887618459

output:

48
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 5
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 9
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=887618459

Test #14:

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

input:

831117597

output:

43
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 7
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 9
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=831117597

Test #15:

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

input:

1820253559

output:

49
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 5
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 7
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1820253559

Test #16:

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

input:

1563399651

output:

47
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 3 GOTO 4; PUSH 3 GOTO 3
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 5
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 7
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 10
POP 11 GOTO ...

result:

ok x=1563399651

Test #17:

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

input:

1631350977

output:

42
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 8
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1631350977

Test #18:

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

input:

1897574279

output:

44
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 9
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1897574279

Test #19:

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

input:

450973351

output:

41
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 5
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 8
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 10
POP 11 GOTO ...

result:

ok x=450973351

Test #20:

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

input:

1212949423

output:

40
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 10
POP 11 GOTO ...

result:

ok x=1212949423

Test #21:

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

input:

1800664165

output:

47
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 5
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 8
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 10
POP 11 GOTO ...

result:

ok x=1800664165

Test #22:

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

input:

2083340735

output:

42
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 6
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 8
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=2083340735

Test #23:

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

input:

1989353363

output:

46
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 7
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 9
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1989353363

Test #24:

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

input:

1686030751

output:

44
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 6
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1686030751

Test #25:

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

input:

483234157

output:

43
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 8
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 10
POP 11 GOTO ...

result:

ok x=483234157

Test #26:

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

input:

1784967647

output:

43
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 5
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 8
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1784967647

Test #27:

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

input:

1052131125

output:

48
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 6
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 8
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1052131125

Test #28:

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

input:

673034421

output:

42
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 3 GOTO 4; PUSH 3 GOTO 3
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=673034421

Test #29:

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

input:

1136250939

output:

44
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 6
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 8
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 10
POP 11 GOTO ...

result:

ok x=1136250939

Test #30:

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

input:

1434678339

output:

42
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 3 GOTO 4; PUSH 3 GOTO 3
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 6
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 9
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1434678339

Test #31:

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

input:

174274079

output:

37
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 3 GOTO 4; PUSH 3 GOTO 3
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 7
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 9
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=174274079

Test #32:

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

input:

1911998229

output:

47
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 9
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1911998229

Test #33:

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

input:

441665295

output:

39
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 5
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 9
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=441665295

Test #34:

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

input:

1325107907

output:

46
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 6
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 8
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1325107907

Test #35:

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

input:

264691101

output:

45
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 6
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 8
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 10
POP 11 GOTO ...

result:

ok x=264691101

Test #36:

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

input:

1655988757

output:

42
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 7
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 10
POP 11 GOTO ...

result:

ok x=1655988757

Test #37:

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

input:

1912613857

output:

41
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 8
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1912613857

Test #38:

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

input:

471758205

output:

45
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=471758205

Test #39:

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

input:

1295394655

output:

43
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 6
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 9
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1295394655

Test #40:

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

input:

1734993785

output:

49
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 6
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 8
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 10
POP 11 GOTO ...

result:

ok x=1734993785

Test #41:

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

input:

986893495

output:

44
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 7
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 10
POP 11 GOTO ...

result:

ok x=986893495

Test #42:

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

input:

105826293

output:

42
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 6
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 10
POP 11 GOTO ...

result:

ok x=105826293

Test #43:

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

input:

3

output:

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

result:

ok x=3

Test #44:

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

input:

7

output:

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

result:

ok x=7

Test #45:

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

input:

9

output:

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

result:

ok x=9

Test #46:

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

input:

11

output:

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

result:

ok x=11

Test #47:

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

input:

13

output:

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

result:

ok x=13

Test #48:

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

input:

15

output:

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

result:

ok x=15

Test #49:

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

input:

2147483643

output:

58
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 6
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 8
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 10
POP 11 GOTO ...

result:

ok x=2147483643

Test #50:

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

input:

2147483645

output:

59
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 2
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 4
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 6
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 8
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 10
POP 11 GOTO ...

result:

ok x=2147483645

Test #51:

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

input:

1073741827

output:

31
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1073741827

Test #52:

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

input:

1073741825

output:

31
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1073741825

Test #53:

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

input:

1073741823

output:

30
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1073741823

Test #54:

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

input:

536870967

output:

32
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=536870967

Test #55:

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

input:

536870965

output:

33
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=536870965

Test #56:

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

input:

1073741881

output:

34
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1073741881

Test #57:

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

input:

1073741879

output:

33
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1073741879

Test #58:

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

input:

1073741877

output:

34
POP 1 GOTO 2; PUSH 1 GOTO 1
POP 2 GOTO 3; PUSH 2 GOTO 1
POP 3 GOTO 4; PUSH 3 GOTO 1
POP 4 GOTO 5; PUSH 4 GOTO 1
POP 5 GOTO 6; PUSH 5 GOTO 1
POP 6 GOTO 7; PUSH 6 GOTO 1
POP 7 GOTO 8; PUSH 7 GOTO 1
POP 8 GOTO 9; PUSH 8 GOTO 1
POP 9 GOTO 10; PUSH 9 GOTO 1
POP 10 GOTO 11; PUSH 10 GOTO 1
POP 11 GOTO 1...

result:

ok x=1073741877

Extra Test:

score: 0
Extra Test Passed