QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#75119#5236. Wersja dla profesjonalistów [A]XZTmaxsmall670 2ms3460kbC++23542b2023-02-04 15:34:492023-02-04 15:35:23

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-02-04 15:35:23]
  • 评测
  • 测评结果:0
  • 用时:2ms
  • 内存:3460kb
  • [2023-02-04 15:34:49]
  • 提交

answer

#include<bits/stdc++.h>
#define int long long
using namespace std;
int n;
string add(string s,int v)
{
	string t="";
	for(;v;v>>=1)if(v&1)t=t+s,s="2["+s+"]";
	return t;
}
void work(int n)
{
	if(n==1)return void(cout<<"AE");
	if(n==2)return void(cout<<"AEACAEE");
	int a=n/2,b=(n-1)/2;work(a);work(b);
	string s=add("AC",b)+"A";
	string s1=add("CE",b)+"C"+add("A",b);
	string s2=add("E",a+b+1);
	cout<<s+add(s1,a)+s2;
}
signed main()
{
	cin>>n;
	if(n>1000)return 0;
	work(n);
	cout<<add("C",n);
	return 0;
}
/*
*/ 

详细

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 1
Accepted
time: 2ms
memory: 3352kb

input:

1

output:

AEC

result:

ok correct (length = 3)

Test #2:

score: -1
Wrong Answer
time: 1ms
memory: 3460kb

input:

2

output:

AEACAEEC

result:

wrong answer incorrect path

Subtask #2:

score: 0
Wrong Answer

Test #16:

score: 0
Wrong Answer
time: 2ms
memory: 3420kb

input:

320

output:

AEACAEEAEACAEEACACECAE2[E]AEACAEEAEACACECAEACACECA2[CECA]E2[E]AEACAEEAEACACECAEAEACAEEAEACACECAEACACECAE2[E]AC2[AC]ACE2[CE]CA2[A]2[CE2[CE]CA2[A]]E2[E]AEACAEEAEACACECAEAEACAEEAEACACECAEACACECAE2[E]AEACAEEAEACACECAEAEACAEEAEACACECAEACACECAE2[E]AC2[AC]ACE2[CE]CA2[A]2[CE2[CE]CA2[A]]E2[E]2[2[E]]AC2[AC]2[...

result:

wrong answer incorrect path

Subtask #3:

score: 0
Wrong Answer

Test #28:

score: 0
Wrong Answer
time: 0ms
memory: 3324kb

input:

1000000

output:


result:

wrong output format Unexpected end of file - token expected

Subtask #4:

score: 0
Wrong Answer

Test #37:

score: 0
Wrong Answer
time: 1ms
memory: 3412kb

input:

999999

output:


result:

wrong output format Unexpected end of file - token expected

Subtask #5:

score: 0
Wrong Answer

Test #46:

score: 0
Wrong Answer
time: 1ms
memory: 3340kb

input:

10000000000

output:


result:

wrong output format Unexpected end of file - token expected

Subtask #6:

score: 0
Wrong Answer

Test #55:

score: 0
Wrong Answer
time: 2ms
memory: 3340kb

input:

9999999999

output:


result:

wrong output format Unexpected end of file - token expected

Subtask #7:

score: 0
Wrong Answer

Test #64:

score: 0
Wrong Answer
time: 2ms
memory: 3404kb

input:

100000000000000

output:


result:

wrong output format Unexpected end of file - token expected

Subtask #8:

score: 0
Wrong Answer

Test #84:

score: 0
Wrong Answer
time: 2ms
memory: 3408kb

input:

99999999999999

output:


result:

wrong output format Unexpected end of file - token expected

Subtask #9:

score: 0
Wrong Answer

Test #103:

score: 0
Wrong Answer
time: 1ms
memory: 3276kb

input:

1000000000000000000

output:


result:

wrong output format Unexpected end of file - token expected

Subtask #10:

score: 0
Wrong Answer

Test #128:

score: 0
Wrong Answer
time: 2ms
memory: 3340kb

input:

999999999999999999

output:


result:

wrong output format Unexpected end of file - token expected