QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#311651 | #5236. Wersja dla profesjonalistów [A] | yz_ly | 0 | 128ms | 6088kb | C++14 | 1.3kb | 2024-01-22 16:47:39 | 2024-01-22 16:47:39 |
Judging History
answer
#include<bits/stdc++.h>
#define ll long long
using namespace std;
inline ll read(){
char ch=getchar();
ll f=1,x=0;
while(ch<'0'||ch>'9'){
if(ch=='-')
f=-f;
ch=getchar();
}
while(ch>='0'&&ch<='9'){
x=x*10+ch-'0';
ch=getchar();
}
return x*f;
}
inline void work(int k){
if(k<0){
putchar('-');
k=-k;
}
if(k>9)
work(k/10);
putchar(k%10+'0');
}
/*
当n为奇数时,可以划分为两个n/2的三角形带一个菱形
分别解决,递归即可
n为偶数时
*/
ll n;
stack<ll> q;
void add(ll now,string s1,string &sum){
int num=0;
while(now){
q.emplace(now%9);
num++;
now/=9;
}
while(!q.empty()){
sum=sum+(char)(q.top()+'0')+"[";
for(int i=1;i<num;i++){
sum=sum+'9'+'[';
}
sum+=s1;
for(int i=1;i<=num;i++){
sum+=']';
}
q.pop();
num--;
}
}
string solve(ll n){
string sum="";
if(n==1){
sum="AE";
return sum;
}
ll len=n/2;
if(n&1){
string ans=solve(n/2);
sum+="2[";
sum+=ans;
sum+=']';
add(len,"AC",sum);
sum+='A';
string s2="";
add(len,"CE",s2);
s2+='C';
add(len+1,"A",s2);
add(len,s2,sum);
}
else{
sum=solve(n-1);
add(n-1,"AC",sum);
sum+='A';
}
add(n,"E",sum);
return sum;
}
int main(){
n=read();
string ans=solve(n);
add(n,"C",ans);
cout<<ans<<"\n";
return 0;
}
详细
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 1
Accepted
time: 1ms
memory: 3592kb
input:
1
output:
AE1[C]
result:
ok correct (length = 3)
Test #2:
score: 0
Accepted
time: 0ms
memory: 3744kb
input:
2
output:
AE1[AC]A2[E]2[C]
result:
ok correct (length = 13)
Test #3:
score: 0
Accepted
time: 0ms
memory: 3776kb
input:
4
output:
2[AE]1[AC]A1[1[CE]C2[A]]3[E]3[AC]A4[E]4[C]
result:
ok correct (length = 30)
Test #4:
score: 0
Accepted
time: 0ms
memory: 3572kb
input:
5
output:
2[AE1[AC]A2[E]]2[AC]A2[2[CE]C3[A]]5[E]5[C]
result:
ok correct (length = 43)
Test #5:
score: 0
Accepted
time: 0ms
memory: 3572kb
input:
6
output:
2[AE1[AC]A2[E]]2[AC]A2[2[CE]C3[A]]5[E]5[AC]A6[E]6[C]
result:
ok correct (length = 53)
Test #6:
score: 0
Accepted
time: 0ms
memory: 3588kb
input:
7
output:
2[2[AE]1[AC]A1[1[CE]C2[A]]3[E]]3[AC]A3[3[CE]C4[A]]7[E]7[C]
result:
ok correct (length = 53)
Test #7:
score: -1
Wrong Answer
time: 0ms
memory: 3504kb
input:
10
output:
2[2[AE]1[AC]A1[1[CE]C2[A]]3[E]3[AC]A4[E]]4[AC]A4[4[CE]C5[A]]1[9[E]]0[E]1[9[AC]]0[AC]A1[9[E]]1[E]1[9[C]]1[C]
result:
wrong answer invalid output
Subtask #2:
score: 0
Wrong Answer
Test #16:
score: 0
Wrong Answer
time: 0ms
memory: 3820kb
input:
320
output:
2[2[2[2[2[2[2[AE]1[AC]A1[1[CE]C2[A]]3[E]3[AC]A4[E]]4[AC]A4[4[CE]C5[A]]1[9[E]]0[E]]1[9[AC]]0[AC]A1[9[1[9[CE]]0[CE]C1[9[A]]1[A]]]0[1[9[CE]]0[CE]C1[9[A]]1[A]]2[9[E]]1[E]]2[9[AC]]1[AC]A2[9[2[9[CE]]1[CE]C2[9[A]]2[A]]]1[2[9[CE]]1[CE]C2[9[A]]2[A]]4[9[E]]3[E]]4[9[AC]]3[AC]A4[9[4[9[CE]]3[CE]C4[9[A]]4[A]]]3[4...
result:
wrong answer invalid output
Subtask #3:
score: 0
Wrong Answer
Test #28:
score: 0
Wrong Answer
time: 1ms
memory: 3708kb
input:
1000000
output:
2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[AE1[AC]A2[E]]2[AC]A2[2[CE]C3[A]]5[E]5[AC]A6[E]]6[AC]A6[6[CE]C7[A]]1[9[E]]4[E]1[9[AC]]4[AC]A1[9[E]]5[E]]1[9[AC]]5[AC]A1[9[1[9[CE]]5[CE]C1[9[A]]6[A]]]5[1[9[CE]]5[CE]C1[9[A]]6[A]]3[9[E]]2[E]]3[9[AC]]2[AC]A3[9[3[9[CE]]2[CE]C3[9[A]]3[A]]]2[3[9[CE]]2[CE]C3[9[A]]3[A]]6[9...
result:
wrong answer invalid output
Subtask #4:
score: 0
Wrong Answer
Test #37:
score: 0
Wrong Answer
time: 1ms
memory: 3592kb
input:
999999
output:
2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[AE1[AC]A2[E]]2[AC]A2[2[CE]C3[A]]5[E]5[AC]A6[E]]6[AC]A6[6[CE]C7[A]]1[9[E]]4[E]1[9[AC]]4[AC]A1[9[E]]5[E]]1[9[AC]]5[AC]A1[9[1[9[CE]]5[CE]C1[9[A]]6[A]]]5[1[9[CE]]5[CE]C1[9[A]]6[A]]3[9[E]]2[E]]3[9[AC]]2[AC]A3[9[3[9[CE]]2[CE]C3[9[A]]3[A]]]2[3[9[CE]]2[CE]C3[9[A]]3[A]]6[9...
result:
wrong answer invalid output
Subtask #5:
score: 0
Wrong Answer
Test #46:
score: 0
Wrong Answer
time: 5ms
memory: 3728kb
input:
10000000000
output:
2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[AE]1[AC]A1[1[CE]C2[A]]3[E]]3[AC]A3[3[CE]C4[A]]7[E]7[AC]A8[E]]8[AC]A8[8[CE]C1[9[A]]0[A]]1[9[E]]8[E]]1[9[AC]]8[AC]A1[9[1[9[CE]]8[CE]C2[9[A]]0[A]]]8[1[9[CE]]8[CE]C2[9[A]]0[A]]3[9[E]]8[E]3[9[AC]]8[AC]A4[9[E]]0[E]]4[9[AC]]0[AC]A4[9[4[9[CE]]0...
result:
wrong answer invalid output
Subtask #6:
score: 0
Wrong Answer
Test #55:
score: 0
Wrong Answer
time: 4ms
memory: 3768kb
input:
9999999999
output:
2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[AE]1[AC]A1[1[CE]C2[A]]3[E]]3[AC]A3[3[CE]C4[A]]7[E]7[AC]A8[E]]8[AC]A8[8[CE]C1[9[A]]0[A]]1[9[E]]8[E]]1[9[AC]]8[AC]A1[9[1[9[CE]]8[CE]C2[9[A]]0[A]]]8[1[9[CE]]8[CE]C2[9[A]]0[A]]3[9[E]]8[E]3[9[AC]]8[AC]A4[9[E]]0[E]]4[9[AC]]0[AC]A4[9[4[9[CE]]0...
result:
wrong answer invalid output
Subtask #7:
score: 0
Wrong Answer
Test #64:
score: 0
Wrong Answer
time: 28ms
memory: 4464kb
input:
100000000000000
output:
2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[AE]1[AC]A1[1[CE]C2[A]]3[E]3[AC]A4[E]]4[AC]A4[4[CE]C5[A]]1[9[E]]0[E]1[9[AC]]0[AC]A1[9[E]]1[E]]1[9[AC]]1[AC]A1[9[1[9[CE]]1[CE]C1[9[A]]2[A]]]1[1[9[CE]]1[CE]C1[9[A]]2[A]]2[9[E]]3[E]]2[9[AC]]3[AC]A2[9[2[9[CE]]3[CE]C...
result:
wrong answer the length of your output (166646) exceeds the constraint (150000)
Subtask #8:
score: 0
Wrong Answer
Test #84:
score: 0
Wrong Answer
time: 20ms
memory: 4480kb
input:
99999999999999
output:
2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[AE]1[AC]A1[1[CE]C2[A]]3[E]3[AC]A4[E]]4[AC]A4[4[CE]C5[A]]1[9[E]]0[E]1[9[AC]]0[AC]A1[9[E]]1[E]]1[9[AC]]1[AC]A1[9[1[9[CE]]1[CE]C1[9[A]]2[A]]]1[1[9[CE]]1[CE]C1[9[A]]2[A]]2[9[E]]3[E]]2[9[AC]]3[AC]A2[9[2[9[CE]]3[CE]C...
result:
wrong answer the length of your output (165880) exceeds the constraint (150000)
Subtask #9:
score: 0
Wrong Answer
Test #103:
score: 0
Wrong Answer
time: 127ms
memory: 6088kb
input:
1000000000000000000
output:
2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[AE1[AC]A2[E]]2[AC]A2[2[CE]C3[A]]5[E]]5[AC]A5[5[CE]C6[A]]1[9[E]]2[E]1[9[AC]]2[AC]A1[9[E]]3[E]]1[9[AC]]3[AC]A1[9[1[9[CE]]3[CE]C1[9[A]]4[A]]]3[1[9[CE]]3[CE]C1[9[A]]4[A]]2[9[E]]7[E]2[9[AC]...
result:
wrong answer the length of your output (415418) exceeds the constraint (150000)
Subtask #10:
score: 0
Wrong Answer
Test #128:
score: 0
Wrong Answer
time: 128ms
memory: 6028kb
input:
999999999999999999
output:
2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[2[AE1[AC]A2[E]]2[AC]A2[2[CE]C3[A]]5[E]]5[AC]A5[5[CE]C6[A]]1[9[E]]2[E]1[9[AC]]2[AC]A1[9[E]]3[E]]1[9[AC]]3[AC]A1[9[1[9[CE]]3[CE]C1[9[A]]4[A]]]3[1[9[CE]]3[CE]C1[9[A]]4[A]]2[9[E]]7[E]2[9[AC]...
result:
wrong answer the length of your output (414220) exceeds the constraint (150000)