QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#75135 | #5236. Wersja dla profesjonalistów [A] | XZTmaxsmall67 | 4 | 29ms | 29004kb | C++23 | 569b | 2023-02-04 15:45:43 | 2023-02-04 15:45:43 |
Judging History
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,s="2["+s+"]")if(v&1)t=t+s;
return t;
}
string work(int n)
{
if(n==1)return "AE";
if(n==2)return "AEACAEE";
if(n%2==0)return add("A",n)+add("EC",n-1)+"E"+work(n-1);
int a=(n-1)/2;
string t=work(a);
string s=add("AC",a)+"A";
string s1=add("CE",a)+"C"+add("A",a+1);
string s2=add("E",n);
return add(t,2)+s+add(s1,a)+s2;
}
signed main()
{
cin>>n;
cout<<work(n);
cout<<add("C",n);
return 0;
}
/*
*/
详细
Subtask #1:
score: 1
Accepted
Test #1:
score: 1
Accepted
time: 2ms
memory: 3412kb
input:
1
output:
AEC
result:
ok correct (length = 3)
Test #2:
score: 0
Accepted
time: 1ms
memory: 3420kb
input:
2
output:
AEACAEE2[C]
result:
ok correct (length = 13)
Test #3:
score: 0
Accepted
time: 2ms
memory: 3336kb
input:
4
output:
2[2[A]]EC2[EC]E2[AE]ACACEC2[A]E2[E]2[2[C]]
result:
ok correct (length = 30)
Test #4:
score: 0
Accepted
time: 1ms
memory: 3328kb
input:
5
output:
2[AEACAEE]2[AC]A2[2[CE]CA2[A]]E2[2[E]]C2[2[C]]
result:
ok correct (length = 43)
Test #5:
score: 0
Accepted
time: 2ms
memory: 3336kb
input:
6
output:
2[A]2[2[A]]EC2[2[EC]]E2[AEACAEE]2[AC]A2[2[CE]CA2[A]]E2[2[E]]2[C]2[2[C]]
result:
ok correct (length = 53)
Test #6:
score: 0
Accepted
time: 2ms
memory: 3380kb
input:
7
output:
2[2[AE]ACACEC2[A]E2[E]]AC2[AC]ACE2[CE]C2[2[A]]2[CE2[CE]C2[2[A]]]E2[E]2[2[E]]C2[C]2[2[C]]
result:
ok correct (length = 53)
Test #7:
score: 0
Accepted
time: 2ms
memory: 3332kb
input:
10
output:
2[A]2[2[2[A]]]EC2[2[2[EC]]]E2[2[2[A]]EC2[EC]E2[AE]ACACEC2[A]E2[E]]2[2[AC]]A2[2[2[2[CE]]CA2[2[A]]]]E2[2[2[E]]]2[C]2[2[2[C]]]
result:
ok correct (length = 79)
Test #8:
score: 0
Accepted
time: 1ms
memory: 3360kb
input:
69
output:
2[2[A]2[2[2[2[2[A]]]]]EC2[2[2[2[2[EC]]]]]E2[2[2[2[2[A]]]]EC2[EC]2[2[EC]]2[2[2[EC]]]E2[2[2[AE]ACACEC2[A]E2[E]]AC2[AC]ACE2[CE]C2[2[A]]2[CE2[CE]C2[2[A]]]E2[E]2[2[E]]]AC2[AC]2[2[AC]]ACE2[CE]2[2[CE]]C2[2[2[A]]]2[CE2[CE]2[2[CE]]C2[2[2[A]]]]2[2[CE2[CE]2[2[CE]]C2[2[2[A]]]]]E2[E]2[2[E]]2[2[2[E]]]]2[2[2[2[AC]...
result:
ok correct (length = 277)
Test #9:
score: 0
Accepted
time: 2ms
memory: 3428kb
input:
100
output:
2[2[A]]2[2[2[2[2[A]]]]]2[2[2[2[2[2[A]]]]]]EC2[EC]2[2[2[2[2[EC]]]]]2[2[2[2[2[2[EC]]]]]]E2[2[2[2[2[A]]]2[2[2[2[A]]]]EC2[EC]2[2[EC]]2[2[2[2[EC]]]]E2[2[2[AEACAEE]2[AC]A2[2[CE]CA2[A]]E2[2[E]]]AC2[2[AC]]ACE2[2[CE]]C2[A]2[2[A]]2[2[CE2[2[CE]]C2[A]2[2[A]]]]E2[E]2[2[2[E]]]]AC2[AC]2[2[2[AC]]]ACE2[CE]2[2[2[CE]]...
result:
ok correct (length = 312)
Test #10:
score: 0
Accepted
time: 2ms
memory: 3344kb
input:
101
output:
2[2[A]2[2[2[2[A]]]]2[2[2[2[2[A]]]]]EC2[2[2[2[EC]]]]2[2[2[2[2[EC]]]]]E2[2[2[2[A]]]2[2[2[2[A]]]]EC2[EC]2[2[EC]]2[2[2[2[EC]]]]E2[2[2[AEACAEE]2[AC]A2[2[CE]CA2[A]]E2[2[E]]]AC2[2[AC]]ACE2[2[CE]]C2[A]2[2[A]]2[2[CE2[2[CE]]C2[A]2[2[A]]]]E2[E]2[2[2[E]]]]AC2[AC]2[2[2[AC]]]ACE2[CE]2[2[2[CE]]]C2[2[A]]2[2[2[A]]]2...
result:
ok correct (length = 321)
Test #11:
score: 0
Accepted
time: 1ms
memory: 3380kb
input:
250
output:
2[A]2[2[2[A]]]2[2[2[2[A]]]]2[2[2[2[2[A]]]]]2[2[2[2[2[2[A]]]]]]2[2[2[2[2[2[2[A]]]]]]]EC2[2[2[EC]]]2[2[2[2[EC]]]]2[2[2[2[2[EC]]]]]2[2[2[2[2[2[EC]]]]]]2[2[2[2[2[2[2[EC]]]]]]]E2[2[2[A]]2[2[2[A]]]2[2[2[2[A]]]]2[2[2[2[2[A]]]]]2[2[2[2[2[2[A]]]]]]EC2[EC]2[2[2[EC]]]2[2[2[2[EC]]]]2[2[2[2[2[EC]]]]]2[2[2[2[2[2[...
result:
ok correct (length = 526)
Test #12:
score: 0
Accepted
time: 0ms
memory: 3444kb
input:
251
output:
2[2[2[A]2[2[A]]2[2[2[A]]]2[2[2[2[A]]]]2[2[2[2[2[A]]]]]EC2[2[EC]]2[2[2[EC]]]2[2[2[2[EC]]]]2[2[2[2[2[EC]]]]]E2[2[A]2[2[A]]2[2[2[A]]]2[2[2[2[A]]]]EC2[2[EC]]2[2[2[EC]]]2[2[2[2[EC]]]]E2[2[A]2[2[A]]2[2[2[A]]]EC2[2[EC]]2[2[2[EC]]]E2[2[A]2[2[A]]EC2[2[EC]]E2[AEACAEE]2[AC]A2[2[CE]CA2[A]]E2[2[E]]]2[AC]2[2[AC]]...
result:
ok correct (length = 456)
Test #13:
score: 0
Accepted
time: 0ms
memory: 3416kb
input:
252
output:
2[2[A]]2[2[2[A]]]2[2[2[2[A]]]]2[2[2[2[2[A]]]]]2[2[2[2[2[2[A]]]]]]2[2[2[2[2[2[2[A]]]]]]]EC2[EC]2[2[2[EC]]]2[2[2[2[EC]]]]2[2[2[2[2[EC]]]]]2[2[2[2[2[2[EC]]]]]]2[2[2[2[2[2[2[EC]]]]]]]E2[2[2[A]2[2[A]]2[2[2[A]]]2[2[2[2[A]]]]2[2[2[2[2[A]]]]]EC2[2[EC]]2[2[2[EC]]]2[2[2[2[EC]]]]2[2[2[2[2[EC]]]]]E2[2[A]2[2[A]]...
result:
ok correct (length = 479)
Test #14:
score: 0
Accepted
time: 2ms
memory: 3440kb
input:
299
output:
2[2[2[A]2[2[2[A]]]2[2[2[2[2[2[A]]]]]]EC2[2[2[EC]]]2[2[2[2[2[2[EC]]]]]]E2[2[2[A]]2[2[2[2[2[A]]]]]EC2[EC]2[2[2[2[2[EC]]]]]E2[2[2[2[2[A]]]EC2[EC]2[2[EC]]E2[2[AE]ACACEC2[A]E2[E]]AC2[AC]ACE2[CE]C2[2[A]]2[CE2[CE]C2[2[A]]]E2[E]2[2[E]]]2[2[2[AC]]]A2[2[2[2[2[2[CE]]]CA2[2[2[A]]]]]]E2[2[2[2[E]]]]]AC2[2[2[2[AC]...
result:
ok correct (length = 486)
Test #15:
score: 0
Accepted
time: 2ms
memory: 3372kb
input:
300
output:
2[2[A]]2[2[2[A]]]2[2[2[2[2[A]]]]]2[2[2[2[2[2[2[2[A]]]]]]]]EC2[EC]2[2[2[EC]]]2[2[2[2[2[EC]]]]]2[2[2[2[2[2[2[2[EC]]]]]]]]E2[2[2[A]2[2[2[A]]]2[2[2[2[2[2[A]]]]]]EC2[2[2[EC]]]2[2[2[2[2[2[EC]]]]]]E2[2[2[A]]2[2[2[2[2[A]]]]]EC2[EC]2[2[2[2[2[EC]]]]]E2[2[2[2[2[A]]]EC2[EC]2[2[EC]]E2[2[AE]ACACEC2[A]E2[E]]AC2[AC...
result:
ok correct (length = 515)
Subtask #2:
score: 1
Accepted
Test #16:
score: 1
Accepted
time: 0ms
memory: 3368kb
input:
320
output:
2[2[2[2[2[2[A]]]]]]2[2[2[2[2[2[2[2[A]]]]]]]]EC2[EC]2[2[EC]]2[2[2[EC]]]2[2[2[2[EC]]]]2[2[2[2[2[EC]]]]]2[2[2[2[2[2[2[2[EC]]]]]]]]E2[2[2[2[2[2[2[2[A]]EC2[EC]E2[AE]ACACEC2[A]E2[E]]2[2[AC]]A2[2[2[2[CE]]CA2[2[A]]]]E2[2[2[E]]]]AC2[2[2[AC]]]ACE2[2[2[CE]]]C2[A]2[2[2[A]]]2[2[2[CE2[2[2[CE]]]C2[A]2[2[2[A]]]]]]E...
result:
ok correct (length = 555)
Test #17:
score: 0
Accepted
time: 2ms
memory: 3404kb
input:
321
output:
2[2[2[2[2[2[A]]]]]2[2[2[2[2[2[2[A]]]]]]]EC2[EC]2[2[EC]]2[2[2[EC]]]2[2[2[2[EC]]]]2[2[2[2[2[2[2[EC]]]]]]]E2[2[2[2[2[2[2[A]]EC2[EC]E2[AE]ACACEC2[A]E2[E]]2[2[AC]]A2[2[2[2[CE]]CA2[2[A]]]]E2[2[2[E]]]]AC2[2[2[AC]]]ACE2[2[2[CE]]]C2[A]2[2[2[A]]]2[2[2[CE2[2[2[CE]]]C2[A]2[2[2[A]]]]]]E2[E]2[2[2[2[E]]]]]AC2[AC]2...
result:
ok correct (length = 507)
Test #18:
score: 0
Accepted
time: 2ms
memory: 3488kb
input:
1000
output:
2[2[2[A]]]2[2[2[2[2[A]]]]]2[2[2[2[2[2[A]]]]]]2[2[2[2[2[2[2[A]]]]]]]2[2[2[2[2[2[2[2[A]]]]]]]]2[2[2[2[2[2[2[2[2[A]]]]]]]]]EC2[EC]2[2[EC]]2[2[2[2[2[EC]]]]]2[2[2[2[2[2[EC]]]]]]2[2[2[2[2[2[2[EC]]]]]]]2[2[2[2[2[2[2[2[EC]]]]]]]]2[2[2[2[2[2[2[2[2[EC]]]]]]]]]E2[2[2[2[2[A]]2[2[2[A]]]2[2[2[2[A]]]]2[2[2[2[2[A]]...
result:
ok correct (length = 809)
Test #19:
score: 0
Accepted
time: 0ms
memory: 3388kb
input:
1024
output:
2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]EC2[EC]2[2[EC]]2[2[2[EC]]]2[2[2[2[EC]]]]2[2[2[2[2[EC]]]]]2[2[2[2[2[2[EC]]]]]]2[2[2[2[2[2[2[EC]]]]]]]2[2[2[2[2[2[2[2[EC]]]]]]]]2[2[2[2[2[2[2[2[2[EC]]]]]]]]]E2[2[2[2[2[2[2[2[2[AE]ACACEC2[A]E2[E]]AC2[AC]ACE2[CE]C2[2[A]]2[CE2[CE]C2[2[A]]]E2[E]2[2[E]]]AC2[AC]2[2[AC]]ACE2[CE...
result:
ok correct (length = 663)
Test #20:
score: 0
Accepted
time: 2ms
memory: 3452kb
input:
1235
output:
2[2[2[2[A]]2[2[2[2[A]]]]2[2[2[2[2[A]]]]]2[2[2[2[2[2[2[2[A]]]]]]]]EC2[EC]2[2[2[2[EC]]]]2[2[2[2[2[EC]]]]]2[2[2[2[2[2[2[2[EC]]]]]]]]E2[2[2[2[A]]2[2[2[A]]]2[2[2[2[2[2[A]]]]]]EC2[EC]2[2[2[EC]]]2[2[2[2[2[2[EC]]]]]]E2[2[2[A]2[2[2[2[A]]]]EC2[2[2[2[EC]]]]E2[2[2[2[A]]]EC2[EC]2[2[EC]]E2[2[AE]ACACEC2[A]E2[E]]AC...
result:
ok correct (length = 934)
Test #21:
score: 0
Accepted
time: 1ms
memory: 3488kb
input:
4094
output:
2[A]2[2[A]]2[2[2[A]]]2[2[2[2[A]]]]2[2[2[2[2[A]]]]]2[2[2[2[2[2[A]]]]]]2[2[2[2[2[2[2[A]]]]]]]2[2[2[2[2[2[2[2[A]]]]]]]]2[2[2[2[2[2[2[2[2[A]]]]]]]]]2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]EC2[2[EC]]2[2[2[EC]]]2[2[2[2[EC]]]]2[2[2[2[2[EC]]]]]2[2[2[2[2[2[EC]]]]]]2[2[2[2[2[2[2[EC]]]...
result:
ok correct (length = 1296)
Test #22:
score: 0
Accepted
time: 1ms
memory: 3516kb
input:
4095
output:
2[2[2[2[2[2[2[2[2[2[2[AE]ACACEC2[A]E2[E]]AC2[AC]ACE2[CE]C2[2[A]]2[CE2[CE]C2[2[A]]]E2[E]2[2[E]]]AC2[AC]2[2[AC]]ACE2[CE]2[2[CE]]C2[2[2[A]]]2[CE2[CE]2[2[CE]]C2[2[2[A]]]]2[2[CE2[CE]2[2[CE]]C2[2[2[A]]]]]E2[E]2[2[E]]2[2[2[E]]]]AC2[AC]2[2[AC]]2[2[2[AC]]]ACE2[CE]2[2[CE]]2[2[2[CE]]]C2[2[2[2[A]]]]2[CE2[CE]2[2...
result:
ok correct (length = 1027)
Test #23:
score: 0
Accepted
time: 2ms
memory: 3440kb
input:
4096
output:
2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]EC2[EC]2[2[EC]]2[2[2[EC]]]2[2[2[2[EC]]]]2[2[2[2[2[EC]]]]]2[2[2[2[2[2[EC]]]]]]2[2[2[2[2[2[2[EC]]]]]]]2[2[2[2[2[2[2[2[EC]]]]]]]]2[2[2[2[2[2[2[2[2[EC]]]]]]]]]2[2[2[2[2[2[2[2[2[2[EC]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[EC]]]]]]]]]]]E2[2[2[2[2[2[2[2[2[2[2[AE]ACACEC2[A]E2[E]...
result:
ok correct (length = 1056)
Test #24:
score: 0
Accepted
time: 2ms
memory: 3504kb
input:
4097
output:
2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]EC2[EC]2[2[EC]]2[2[2[EC]]]2[2[2[2[EC]]]]2[2[2[2[2[EC]]]]]2[2[2[2[2[2[EC]]]]]]2[2[2[2[2[2[2[EC]]]]]]]2[2[2[2[2[2[2[2[EC]]]]]]]]2[2[2[2[2[2[2[2[2[EC]]]]]]]]]2[2[2[2[2[2[2[2[2[2[EC]]]]]]]]]]E2[2[2[2[2[2[2[2[2[2[AE]ACACEC2[A]E2[E]]AC2[AC]ACE2[CE]C2[2[A]]2[CE2[CE]C2[2[...
result:
ok correct (length = 933)
Test #25:
score: 0
Accepted
time: 2ms
memory: 3496kb
input:
4998
output:
2[A]2[2[A]]2[2[2[2[2[2[2[A]]]]]]]2[2[2[2[2[2[2[2[A]]]]]]]]2[2[2[2[2[2[2[2[2[A]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]EC2[2[EC]]2[2[2[2[2[2[2[EC]]]]]]]2[2[2[2[2[2[2[2[EC]]]]]]]]2[2[2[2[2[2[2[2[2[EC]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[EC]]]]]]]]]]]]E2[2[A]2[2[2[2[2[2[A]]]]]]2[2[2[2[2[2[2[A]]]]]]]2[2...
result:
ok correct (length = 1662)
Test #26:
score: 0
Accepted
time: 1ms
memory: 3444kb
input:
4999
output:
2[2[2[2[2[2[2[A]]]]2[2[2[2[2[A]]]]]2[2[2[2[2[2[A]]]]]]2[2[2[2[2[2[2[2[2[A]]]]]]]]]EC2[EC]2[2[EC]]2[2[2[EC]]]2[2[2[2[2[EC]]]]]2[2[2[2[2[2[EC]]]]]]2[2[2[2[2[2[2[2[2[EC]]]]]]]]]E2[2[2[2[2[A]2[2[A]]2[2[2[2[2[A]]]]]EC2[2[EC]]2[2[2[2[2[EC]]]]]E2[2[A]2[2[2[2[A]]]]EC2[2[2[2[EC]]]]E2[2[2[2[A]]]EC2[EC]2[2[EC]...
result:
ok correct (length = 1391)
Test #27:
score: 0
Accepted
time: 2ms
memory: 3444kb
input:
5000
output:
2[2[2[A]]]2[2[2[2[2[2[2[A]]]]]]]2[2[2[2[2[2[2[2[A]]]]]]]]2[2[2[2[2[2[2[2[2[A]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]EC2[EC]2[2[EC]]2[2[2[2[2[2[2[EC]]]]]]]2[2[2[2[2[2[2[2[EC]]]]]]]]2[2[2[2[2[2[2[2[2[EC]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[EC]]]]]]]]]]]]E2[2[2[2[2[2[2[A]]]]2[2[2[2[2[A]]]]]2[2[2[2[2[2...
result:
ok correct (length = 1427)
Subtask #3:
score: 1
Accepted
Test #28:
score: 1
Accepted
time: 1ms
memory: 3552kb
input:
1000000
output:
2[2[2[2[2[2[A]]]]]]2[2[2[2[2[2[2[2[2[A]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]...
result:
ok correct (length = 3639)
Test #29:
score: 0
Accepted
time: 0ms
memory: 3628kb
input:
999998
output:
2[A]2[2[A]]2[2[2[A]]]2[2[2[2[A]]]]2[2[2[2[2[A]]]]]2[2[2[2[2[2[2[2[2[A]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2...
result:
ok correct (length = 3998)
Test #30:
score: 0
Accepted
time: 3ms
memory: 3768kb
input:
524286
output:
2[A]2[2[A]]2[2[2[A]]]2[2[2[2[A]]]]2[2[2[2[2[A]]]]]2[2[2[2[2[2[A]]]]]]2[2[2[2[2[2[2[A]]]]]]]2[2[2[2[2[2[2[2[A]]]]]]]]2[2[2[2[2[2[2[2[2[A]]]]]]]]]2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]2[2[2[2[2[2[2[...
result:
ok correct (length = 4435)
Test #31:
score: 0
Accepted
time: 1ms
memory: 3676kb
input:
524288
output:
2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]]EC2[EC]2[2[EC]]2[2[2[EC]]]2[2[2[2[EC]]]]2[2[2[2[2[EC]]]]]2[2[2[2[2[2[EC]]]]]]2[2[2[2[2[2[2[EC]]]]]]]2[2[2[2[2[2[2[2[EC]]]]]]]]2[2[2[2[2[2[2[2[2[EC]]]]]]]]]2[2[2[2[2[2[2[2[2[2[EC]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[EC]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[...
result:
ok correct (length = 3385)
Test #32:
score: 0
Accepted
time: 0ms
memory: 3680kb
input:
524290
output:
2[A]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]]EC2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[EC]]]]]]]]]]]]]]]]]]]E2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]EC2[EC]2[2[EC]]2[2[2[EC]]]2[2[2[2[EC]]]]2[2[2[2[2[EC]]]]]2[2[2[2[2[2[EC]]]]]]2[2[2[2[2[2[2[EC]]]]]]]2[2[2[2[2[2[2[2[EC]...
result:
ok correct (length = 3262)
Test #33:
score: 0
Accepted
time: 1ms
memory: 3804kb
input:
786429
output:
2[2[A]2[2[A]]2[2[2[A]]]2[2[2[2[A]]]]2[2[2[2[2[A]]]]]2[2[2[2[2[2[A]]]]]]2[2[2[2[2[2[2[A]]]]]]]2[2[2[2[2[2[2[2[A]]]]]]]]2[2[2[2[2[2[2[2[2[A]]]]]]]]]2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]2[2[2[2[2[2[...
result:
ok correct (length = 4370)
Test #34:
score: 0
Accepted
time: 3ms
memory: 3560kb
input:
786431
output:
2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[AEACAEE]2[AC]A2[2[CE]CA2[A]]E2[2[E]]]AC2[2[AC]]ACE2[2[CE]]C2[A]2[2[A]]2[2[CE2[2[CE]]C2[A]2[2[A]]]]E2[E]2[2[2[E]]]]AC2[AC]2[2[2[AC]]]ACE2[CE]2[2[2[CE]]]C2[2[A]]2[2[2[A]]]2[CE2[CE]2[2[2[CE]]]C2[2[A]]2[2[2[A]]]]2[2[2[CE2[CE]2[2[2[CE]]]C2[2[A]]2[2[2[A]]]]]]E2[E]2[2[E]...
result:
ok correct (length = 3562)
Test #35:
score: 0
Accepted
time: 2ms
memory: 3644kb
input:
951557
output:
2[2[A]2[2[2[2[2[2[2[A]]]]]]]2[2[2[2[2[2[2[2[2[A]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]EC2[2[2[2[2[2[2[EC]]]]]]]2[2[2[2[2[2[2[2[2[EC...
result:
ok correct (length = 4718)
Test #36:
score: 0
Accepted
time: 3ms
memory: 3628kb
input:
838702
output:
2[A]2[2[A]]2[2[2[A]]]2[2[2[2[2[A]]]]]2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]...
result:
ok correct (length = 4235)
Subtask #4:
score: 1
Accepted
Test #37:
score: 1
Accepted
time: 2ms
memory: 3700kb
input:
999999
output:
2[2[2[2[2[2[2[2[2[A]]]2[2[2[2[2[2[2[2[A]]]]]]]]2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]EC2[EC]2[2[EC]]2[2[2[2[2[2[2[2[EC]]]]]]]]2[2[2[2[2[2[2[2[2[2[EC]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[EC]]]]]]]]]]]2[2...
result:
ok correct (length = 3585)
Test #38:
score: 0
Accepted
time: 2ms
memory: 3636kb
input:
999997
output:
2[2[A]2[2[A]]2[2[2[A]]]2[2[2[2[A]]]]2[2[2[2[2[2[2[2[A]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]...
result:
ok correct (length = 3895)
Test #39:
score: 0
Accepted
time: 2ms
memory: 3600kb
input:
524287
output:
2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[AE]ACACEC2[A]E2[E]]AC2[AC]ACE2[CE]C2[2[A]]2[CE2[CE]C2[2[A]]]E2[E]2[2[E]]]AC2[AC]2[2[AC]]ACE2[CE]2[2[CE]]C2[2[2[A]]]2[CE2[CE]2[2[CE]]C2[2[2[A]]]]2[2[CE2[CE]2[2[CE]]C2[2[2[A]]]]]E2[E]2[2[E]]2[2[2[E]]]]AC2[AC]2[2[AC]]2[2[2[AC]]]ACE2[CE]2[2[CE]]2[2[2[CE]]]C2[2[2[2[A]]...
result:
ok correct (length = 3337)
Test #40:
score: 0
Accepted
time: 0ms
memory: 3696kb
input:
524289
output:
2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]EC2[EC]2[2[EC]]2[2[2[EC]]]2[2[2[2[EC]]]]2[2[2[2[2[EC]]]]]2[2[2[2[2[2[EC]]]]]]2[2[2[2[2[2[2[EC]]]]]]]2[2[2[2[2[2[2[2[EC]]]]]]]]2[2[2[2[2[2[2[2[2[EC]]]]]]]]]2[2[2[2[2[2[2[2[2[2[EC]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[EC]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2...
result:
ok correct (length = 3207)
Test #41:
score: 0
Accepted
time: 3ms
memory: 3804kb
input:
786428
output:
2[2[A]]2[2[2[A]]]2[2[2[2[A]]]]2[2[2[2[2[A]]]]]2[2[2[2[2[2[A]]]]]]2[2[2[2[2[2[2[A]]]]]]]2[2[2[2[2[2[2[2[A]]]]]]]]2[2[2[2[2[2[2[2[2[A]]]]]]]]]2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[...
result:
ok correct (length = 4475)
Test #42:
score: 0
Accepted
time: 1ms
memory: 3728kb
input:
786430
output:
2[A]2[2[A]]2[2[2[A]]]2[2[2[2[A]]]]2[2[2[2[2[A]]]]]2[2[2[2[2[2[A]]]]]]2[2[2[2[2[2[2[A]]]]]]]2[2[2[2[2[2[2[2[A]]]]]]]]2[2[2[2[2[2[2[2[2[A]]]]]]]]]2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]2[2[2[2[2[2[2[...
result:
ok correct (length = 4450)
Test #43:
score: 0
Accepted
time: 1ms
memory: 3556kb
input:
786432
output:
2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]]EC2[EC]2[2[EC]]2[2[2[EC]]]2[2[2[2[EC]]]]2[2[2[2[2[EC]]]]]2[2[2[2[2[2[EC]]]]]]2[2[2[2[2[2[2[EC]]]]]]]2[2[2[2[2[2[2[2[EC]]]]]]]]2[2[2[2[2[2[2[2[2[EC]]]]]]]]]2[2[2[2[2[2[2[2[2[2[EC]]]]]]]]]]...
result:
ok correct (length = 3610)
Test #44:
score: 0
Accepted
time: 2ms
memory: 3700kb
input:
724171
output:
2[2[2[A]2[2[2[2[A]]]]2[2[2[2[2[A]]]]]2[2[2[2[2[2[2[2[A]]]]]]]]2[2[2[2[2[2[2[2[2[A]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]EC2[2[2[2[EC]]]]2[2[2[2[2[EC]]]]]2[2[2[2[2[2[2[2[EC]]]]]]]]2[2[2[2[2[...
result:
ok correct (length = 3973)
Test #45:
score: 0
Accepted
time: 2ms
memory: 3552kb
input:
868406
output:
2[A]2[2[A]]2[2[2[2[A]]]]2[2[2[2[2[A]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]]EC2[2[EC]]2[2[2[2[EC]]]]2[2[2[2[2[EC]]]]]2[2[2[2[2[2[2[...
result:
ok correct (length = 3980)
Subtask #5:
score: 0
Wrong Answer
Test #46:
score: 0
Wrong Answer
time: 4ms
memory: 4356kb
input:
10000000000
output:
2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A...
result:
wrong answer the length of your output (223465) exceeds the constraint (150000)
Subtask #6:
score: 0
Wrong Answer
Test #55:
score: 0
Wrong Answer
time: 4ms
memory: 4232kb
input:
9999999999
output:
2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]2[2[2[2[A]]]]2[2[2[2[2[A]]]]]2[2[2[2[2[2[A]]]]]]2[2[2[2[2[2[2[A]]]]]]]2[2[2[2[2[2[2[2[2[A]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]]]2[2[2[2...
result:
wrong answer the length of your output (222096) exceeds the constraint (150000)
Subtask #7:
score: 0
Wrong Answer
Test #64:
score: 0
Wrong Answer
time: 3ms
memory: 10660kb
input:
100000000000000
output:
2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[...
result:
wrong answer the length of your output (1188678) exceeds the constraint (150000)
Subtask #8:
score: 0
Wrong Answer
Test #84:
score: 0
Wrong Answer
time: 3ms
memory: 11672kb
input:
99999999999999
output:
2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]2[2[2[2[2[A]]]]]2[2[2[2[2[2[A]]]]]]2[2[2[2[2[2[2[A]]]]]]]2[2[2[2[2[2[2[2[A]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[...
result:
wrong answer the length of your output (1185433) exceeds the constraint (150000)
Subtask #9:
score: 0
Wrong Answer
Test #103:
score: 0
Wrong Answer
time: 29ms
memory: 29004kb
input:
1000000000000000000
output:
2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2...
result:
wrong answer the length of your output (3513287) exceeds the constraint (150000)
Subtask #10:
score: 0
Wrong Answer
Test #128:
score: 0
Wrong Answer
time: 27ms
memory: 28296kb
input:
999999999999999999
output:
2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]2[2[2[2[A]]]]2[2[2[2[2[2[A]]]]]]2[2[2[2[2[2[2[A]]]]]]]2[2[2[2[2[2[2[2[A]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[A]]]]]]]]]]]]]]]2[2[2[2[2[2[...
result:
wrong answer the length of your output (3507635) exceeds the constraint (150000)