QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#490097#8776. Not Another Constructive!Jryno1AC ✓22ms53712kbC++141.4kb2024-07-25 11:15:232024-07-25 11:15:24

Judging History

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

  • [2024-07-25 11:15:24]
  • 评测
  • 测评结果:AC
  • 用时:22ms
  • 内存:53712kb
  • [2024-07-25 11:15:23]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
bitset<5000>f[44][44][44];
int n,k;
char s[44],ans[44];
void dfs(int p,int cc,int nc,int K){
    if(!p)return;
    if(s[p]!='?'){
        ans[p]=s[p];
        if(s[p]=='A')dfs(p-1,cc,nc,K-nc*cc);
        else if(s[p]=='C')dfs(p-1,cc+1,nc,K);
        else if(s[p]=='N')dfs(p-1,cc,nc-1,K);
        else dfs(p-1,cc,nc,K);
        return;
    }
    if(f[p-1][cc][nc][K])ans[p]='Z',dfs(p-1,cc,nc,K);
    else if(f[p-1][cc+1][nc][K])ans[p]='C',dfs(p-1,cc+1,nc,K);
    else if(nc&&f[p-1][cc][nc-1][K])ans[p]='N',dfs(p-1,cc,nc-1,K);
    else ans[p]='A',dfs(p-1,cc,nc,K-cc*nc);
}
int main(){
    cin>>n>>k;
    scanf("%s",s+1);
    int tc=0;
    for(int i=1;i<=n;i++)if(s[i]=='C')tc++;
    for(int C=tc;C<=n;C++)f[0][C][0].set(0);
    for(int i=1;i<=n;i++){
        for(int cc=0;cc<=n;cc++){
            for(int nc=0;nc<=n;nc++){
                if(s[i]!='A'&&s[i]!='C'&&s[i]!='N')f[i][cc][nc]|=f[i-1][cc][nc];
                if(s[i]=='A'||s[i]=='?')f[i][cc][nc]|=f[i-1][cc][nc]<<(cc*nc);
                if(s[i]=='C'||s[i]=='?')f[i][cc][nc]|=f[i-1][cc+1][nc];
                if(s[i]=='N'||s[i]=='?'&&nc)f[i][cc][nc]|=f[i-1][cc][nc-1];
            }
        }
    }
    for(int nc=0;nc<=n;nc++){
        if(f[n][0][nc][k]){
            dfs(n,0,nc,k);
            for(int i=1;i<=n;i++)cout<<ans[i];
            return 0;
        }
    }
    cout<<-1;
    return 0;
}

详细

Test #1:

score: 100
Accepted
time: 3ms
memory: 30516kb

input:

22 2
N??A??????C???????????

output:

NAZAZZZZZZCZZZZZZZZZZZ

result:

ok correct

Test #2:

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

input:

18 0
COUNTINGSATELLITES

output:

COUNTINGSATELLITES

result:

ok correct

Test #3:

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

input:

2 1
??

output:

-1

result:

ok correct

Test #4:

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

input:

1 0
?

output:

Z

result:

ok correct

Test #5:

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

input:

1 0
N

output:

N

result:

ok correct

Test #6:

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

input:

1 0
X

output:

X

result:

ok correct

Test #7:

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

input:

1 1
?

output:

-1

result:

ok correct

Test #8:

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

input:

1 1
N

output:

-1

result:

ok correct

Test #9:

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

input:

1 1
X

output:

-1

result:

ok correct

Test #10:

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

input:

2 0
??

output:

ZZ

result:

ok correct

Test #11:

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

input:

2 0
N?

output:

NZ

result:

ok correct

Test #12:

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

input:

2 0
?C

output:

ZC

result:

ok correct

Test #13:

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

input:

2 1
N?

output:

-1

result:

ok correct

Test #14:

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

input:

2 1
?C

output:

-1

result:

ok correct

Test #15:

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

input:

3 1
???

output:

NAC

result:

ok correct

Test #16:

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

input:

3 1
N??

output:

NAC

result:

ok correct

Test #17:

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

input:

3 1
?A?

output:

NAC

result:

ok correct

Test #18:

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

input:

3 1
??C

output:

NAC

result:

ok correct

Test #19:

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

input:

3 1
NA?

output:

NAC

result:

ok correct

Test #20:

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

input:

3 1
N?C

output:

NAC

result:

ok correct

Test #21:

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

input:

3 1
?AC

output:

NAC

result:

ok correct

Test #22:

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

input:

4 1
????

output:

NACZ

result:

ok correct

Test #23:

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

input:

4 1
X???

output:

XNAC

result:

ok correct

Test #24:

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

input:

4 1
???Z

output:

NACZ

result:

ok correct

Test #25:

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

input:

4 1
?AA?

output:

-1

result:

ok correct

Test #26:

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

input:

4 1
N???

output:

NACZ

result:

ok correct

Test #27:

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

input:

4 1
?N??

output:

ZNAC

result:

ok correct

Test #28:

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

input:

4 1
??N?

output:

NANC

result:

ok correct

Test #29:

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

input:

4 1
???N

output:

NACN

result:

ok correct

Test #30:

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

input:

4 1
A???

output:

ANAC

result:

ok correct

Test #31:

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

input:

4 1
?A??

output:

NACZ

result:

ok correct

Test #32:

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

input:

4 1
??A?

output:

NZAC

result:

ok correct

Test #33:

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

input:

4 1
???A

output:

NACA

result:

ok correct

Test #34:

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

input:

4 1
C???

output:

CNAC

result:

ok correct

Test #35:

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

input:

4 1
?C??

output:

NCAC

result:

ok correct

Test #36:

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

input:

4 1
??C?

output:

NACZ

result:

ok correct

Test #37:

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

input:

4 1
???C

output:

NAZC

result:

ok correct

Test #38:

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

input:

5 4
?????

output:

NAACC

result:

ok correct

Test #39:

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

input:

6 14
??????

output:

-1

result:

ok correct

Test #40:

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

input:

7 14
???????

output:

-1

result:

ok correct

Test #41:

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

input:

8 43
????????

output:

-1

result:

ok correct

Test #42:

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

input:

9 55
?????????

output:

-1

result:

ok correct

Test #43:

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

input:

10 112
??????????

output:

-1

result:

ok correct

Test #44:

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

input:

11 110
???????????

output:

-1

result:

ok correct

Test #45:

score: 0
Accepted
time: 2ms
memory: 20088kb

input:

12 4
????????????

output:

NAACCZZZZZZZ

result:

ok correct

Test #46:

score: 0
Accepted
time: 2ms
memory: 20248kb

input:

13 193
?????????????

output:

-1

result:

ok correct

Test #47:

score: 0
Accepted
time: 3ms
memory: 22008kb

input:

14 91
??????????????

output:

NNNANAAACACCCC

result:

ok correct

Test #48:

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

input:

15 15
???????????????

output:

NAAACCCCCZZZZZZ

result:

ok correct

Test #49:

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

input:

16 261
????????????????

output:

-1

result:

ok correct

Test #50:

score: 0
Accepted
time: 4ms
memory: 24364kb

input:

17 514
?????????????????

output:

-1

result:

ok correct

Test #51:

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

input:

18 678
??????????????????

output:

-1

result:

ok correct

Test #52:

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

input:

19 40
???????????????????

output:

NAAAAACCCCCCCCZZZZZ

result:

ok correct

Test #53:

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

input:

20 1019
????????????????????

output:

-1

result:

ok correct

Test #54:

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

input:

21 1218
?????????????????????

output:

-1

result:

ok correct

Test #55:

score: 0
Accepted
time: 6ms
memory: 32428kb

input:

22 1348
??????????????????????

output:

-1

result:

ok correct

Test #56:

score: 0
Accepted
time: 3ms
memory: 30724kb

input:

23 476
???????????????????????

output:

-1

result:

ok correct

Test #57:

score: 0
Accepted
time: 3ms
memory: 32364kb

input:

24 1445
????????????????????????

output:

-1

result:

ok correct

Test #58:

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

input:

25 1331
?????????????????????????

output:

-1

result:

ok correct

Test #59:

score: 0
Accepted
time: 4ms
memory: 36664kb

input:

26 459
??????????????????????????

output:

NNNANAAAAAAAAAAAACCCCCCCCC

result:

ok correct

Test #60:

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

input:

27 398
???????????????????????????

output:

NNANAAAACAAAAAACCCCCCCCCCCC

result:

ok correct

Test #61:

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

input:

28 274
????????????????????????????

output:

NNAAAAAAACAAACCCCCCCCCCCCCZZ

result:

ok correct

Test #62:

score: 0
Accepted
time: 12ms
memory: 40556kb

input:

29 1624
?????????????????????????????

output:

-1

result:

ok correct

Test #63:

score: 0
Accepted
time: 8ms
memory: 40732kb

input:

30 2079
??????????????????????????????

output:

-1

result:

ok correct

Test #64:

score: 0
Accepted
time: 4ms
memory: 40936kb

input:

31 2067
???????????????????????????????

output:

-1

result:

ok correct

Test #65:

score: 0
Accepted
time: 7ms
memory: 42712kb

input:

32 1267
????????????????????????????????

output:

-1

result:

ok correct

Test #66:

score: 0
Accepted
time: 7ms
memory: 44732kb

input:

33 928
?????????????????????????????????

output:

NNNNAANAAAAAAAAAACCCCCCCCCCCCCCCC

result:

ok correct

Test #67:

score: 0
Accepted
time: 11ms
memory: 46828kb

input:

34 298
??????????????????????????????????

output:

NNAAAAAAAAACACCCCCCCCCCCCCCZZZZZZZ

result:

ok correct

Test #68:

score: 0
Accepted
time: 12ms
memory: 47036kb

input:

35 2361
???????????????????????????????????

output:

-1

result:

ok correct

Test #69:

score: 0
Accepted
time: 18ms
memory: 47504kb

input:

36 489
????????????????????????????????????

output:

NANAAAAAAAAAAAACAACCCCCCCCCCCCCCCCZZ

result:

ok correct

Test #70:

score: 0
Accepted
time: 11ms
memory: 48972kb

input:

37 294
?????????????????????????????????????

output:

NAAAAAAAAAAAAAACCCCCCCCCCCCCCCCCCCCCZ

result:

ok correct

Test #71:

score: 0
Accepted
time: 20ms
memory: 50992kb

input:

38 1558
??????????????????????????????????????

output:

NNNNNNAANAAAAAAAAAACCCCCCCCCCCCCCCCCCC

result:

ok correct

Test #72:

score: 0
Accepted
time: 19ms
memory: 51412kb

input:

39 1319
???????????????????????????????????????

output:

NNNNANAAAAAAAAAAACAAAAACCCCCCCCCCCCCCCZ

result:

ok correct

Test #73:

score: 0
Accepted
time: 11ms
memory: 52992kb

input:

40 993
????????????????????????????????????????

output:

NNNAAAAAAAAAAACAAAAACCCCCCCCCCCCCCCCCCCC

result:

ok correct

Test #74:

score: 0
Accepted
time: 4ms
memory: 52908kb

input:

40 498
ACNANACNNACNACNNNCNCNNNANNNACNCCACAA?ANA

output:

-1

result:

ok correct

Test #75:

score: 0
Accepted
time: 6ms
memory: 52864kb

input:

40 855
NAAANAACNNNCNAANCNANCNANACANCCAANCACNCAC

output:

-1

result:

ok correct

Test #76:

score: 0
Accepted
time: 7ms
memory: 53268kb

input:

40 1007
?CNACNNAANACANACNACCC?CAANNCCCCANNANCACN

output:

-1

result:

ok correct

Test #77:

score: 0
Accepted
time: 3ms
memory: 52968kb

input:

40 1778
NACANANN?CCANNCCAACNNCCNCCCNCCNACCNC?NNN

output:

-1

result:

ok correct

Test #78:

score: 0
Accepted
time: 9ms
memory: 53184kb

input:

40 2186
ACCCACAN?NNA?AACCNNNN?ANACCANCNCNNCA?NCN

output:

-1

result:

ok correct

Test #79:

score: 0
Accepted
time: 9ms
memory: 52852kb

input:

40 332
ACAC?NCCCANAA?ACCNNC?NAC?CAC?CNCNNACNNNN

output:

-1

result:

ok correct

Test #80:

score: 0
Accepted
time: 7ms
memory: 53476kb

input:

40 712
ANCNANAAC?CACAACA?CNACCCANAACCA?CNNAANCN

output:

-1

result:

ok correct

Test #81:

score: 0
Accepted
time: 8ms
memory: 53020kb

input:

40 1127
C?CAAAANNCANANAC?NCANACANAACAACANNCCNCAC

output:

-1

result:

ok correct

Test #82:

score: 0
Accepted
time: 3ms
memory: 51788kb

input:

40 1835
CANNCAANNNAANANNCACANAC?CCCCAACA?NNNCAC?

output:

-1

result:

ok correct

Test #83:

score: 0
Accepted
time: 8ms
memory: 53324kb

input:

40 2009
CANAAAN?ANAACNCCNCCNCAAANCANCCAN?CCNCAAN

output:

-1

result:

ok correct

Test #84:

score: 0
Accepted
time: 7ms
memory: 51840kb

input:

40 54
CNAC?ACAAC?ACC?ANC?C?NNCAANCCAC?NCN?CACA

output:

-1

result:

ok correct

Test #85:

score: 0
Accepted
time: 8ms
memory: 53064kb

input:

40 955
?A?ANA?NN?C?ANC??CNNACAAC?N?AAN?AN??ANNA

output:

-1

result:

ok correct

Test #86:

score: 0
Accepted
time: 7ms
memory: 53508kb

input:

40 1451
??CCCA?N?ACCN?C???NNN??C?ANAN??NCNA??NAN

output:

-1

result:

ok correct

Test #87:

score: 0
Accepted
time: 9ms
memory: 52932kb

input:

40 1526
CN??AC?CCCCNACCNCNCCNC?CAAN?C?CA??ANCN?A

output:

-1

result:

ok correct

Test #88:

score: 0
Accepted
time: 7ms
memory: 53144kb

input:

40 2453
C?NC?CCAAN?ACCCNCC??ACAANCANCNCNNAACC?NN

output:

-1

result:

ok correct

Test #89:

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

input:

40 166
?NC??AACAN??NCA?CCAA?A??CNNN?ACNN?AN?ANC

output:

ZNCACAACANAANCACCCAAAACZCNNNZACNNZANZANC

result:

ok correct

Test #90:

score: 0
Accepted
time: 11ms
memory: 53368kb

input:

40 887
?NA?AN?N?A?ANN??N?ANCAN?N????AC?NN?NA???

output:

NNANANZNAAAANNAANCANCANANACCCACCNNCNACCC

result:

ok correct

Test #91:

score: 0
Accepted
time: 7ms
memory: 51460kb

input:

40 1310
CCN?NNANC??CANN??NC?N??NA?NNNNCN?N?CCCCC

output:

-1

result:

ok correct

Test #92:

score: 0
Accepted
time: 11ms
memory: 52960kb

input:

40 1568
ANCN?N?NACC??NNN?AAC?AANA?CA?NC?CNNAN??N

output:

-1

result:

ok correct

Test #93:

score: 0
Accepted
time: 5ms
memory: 51888kb

input:

40 2035
CA?N?ACCNN??CANA?NC?NACNC??CC???NCA?N?AC

output:

-1

result:

ok correct

Test #94:

score: 0
Accepted
time: 3ms
memory: 53356kb

input:

40 126
AC?CACCCN???C?NCCN?NN??CN?CNCN?C?N?C?A?C

output:

ACZCACCCNAACCANCCNANNACCNACNCNZCZNZCZAZC

result:

ok correct

Test #95:

score: 0
Accepted
time: 18ms
memory: 52888kb

input:

40 962
CCC???A??????AN?N???C?NN??CANA?CNA??N???

output:

CCCNNNANNANANANANAAACCNNAACANACCNACCNCCC

result:

ok correct

Test #96:

score: 0
Accepted
time: 12ms
memory: 53072kb

input:

40 1043
?A??NANA?CN?N?AN?ANN?CNAANCC??AAANNN????

output:

-1

result:

ok correct

Test #97:

score: 0
Accepted
time: 4ms
memory: 51764kb

input:

40 1638
N?ANA?NA???A??N?CNNAA???NC????CNN??AC??N

output:

-1

result:

ok correct

Test #98:

score: 0
Accepted
time: 6ms
memory: 52764kb

input:

40 2240
NNC??NCA???N?N?NNC??CNNNAN??C?AN??AC?C??

output:

-1

result:

ok correct

Test #99:

score: 0
Accepted
time: 7ms
memory: 53336kb

input:

40 55
N?NCNC????C?A??A?A?NN??ACC??C??NC???ACN?

output:

-1

result:

ok correct

Test #100:

score: 0
Accepted
time: 11ms
memory: 51684kb

input:

40 639
C???NN??C?N?N????N?CA?NCAN????AN????NA??

output:

CNAANNAACANANACAANACACNCANCCCCANCCCCNACZ

result:

ok correct

Test #101:

score: 0
Accepted
time: 15ms
memory: 53272kb

input:

40 1438
?C?A?NA?AN???CA???NAAAN??A?NNANNCAA?????

output:

-1

result:

ok correct

Test #102:

score: 0
Accepted
time: 3ms
memory: 51736kb

input:

40 1660
???C?A???????NN??AANNAC???A?CN??ACN?AC?C

output:

-1

result:

ok correct

Test #103:

score: 0
Accepted
time: 16ms
memory: 51768kb

input:

40 2016
??AA??N?N??A?C?C????????C????C?C?CN??N?A

output:

-1

result:

ok correct

Test #104:

score: 0
Accepted
time: 7ms
memory: 51656kb

input:

40 242
?C???A???AA??A??C?CN???C???A?ANA?NN??AA?

output:

NCAAAAAAAAAAAACCCCCNAACCCCCAZANACNNCCAAC

result:

ok correct

Test #105:

score: 0
Accepted
time: 20ms
memory: 53064kb

input:

40 711
??A?AA?C??C???CCNA?????C????A?????A??C??

output:

NNANAAACCACAAACCNAAAACCCCCCCACCCCCACCCZZ

result:

ok correct

Test #106:

score: 0
Accepted
time: 11ms
memory: 52860kb

input:

40 1094
??AACN??N?A?????C????AA??CC???CC?N?A????

output:

NNAACNANNAAAAAAACCAACAACCCCCCCCCCNCACCCC

result:

ok correct

Test #107:

score: 0
Accepted
time: 7ms
memory: 52872kb

input:

40 1878
?A??AACCA????N???A???C?C?C??C?NANC?N?NAC

output:

-1

result:

ok correct

Test #108:

score: 0
Accepted
time: 7ms
memory: 52828kb

input:

40 2082
AC??ACANC?CN?C?N???C?N???N??C?CC?????C?C

output:

-1

result:

ok correct

Test #109:

score: 0
Accepted
time: 14ms
memory: 52720kb

input:

40 268
N?N??NNNCNC??CAC????A?C?????N???AN??NC??

output:

NANACNNNCNCAACACACACACCCZZZZNZZZANZZNCZZ

result:

ok correct

Test #110:

score: 0
Accepted
time: 8ms
memory: 52876kb

input:

40 960
?????????N???NA?????????C??AC???AN?A???A

output:

NNAANAAAANAAANAAAAAAACCCCCCACCCCANCACCCA

result:

ok correct

Test #111:

score: 0
Accepted
time: 20ms
memory: 52944kb

input:

40 1342
???C?????C?????NA?N??N?C?????A?N???NA???

output:

NNNCNNNNNCNAAANNAANAANACAACCCACNCCCNACCC

result:

ok correct

Test #112:

score: 0
Accepted
time: 12ms
memory: 51608kb

input:

40 1739
?A?A???A???N?A??N???C???NCC??C??ANN???A?

output:

-1

result:

ok correct

Test #113:

score: 0
Accepted
time: 12ms
memory: 53712kb

input:

40 2484
??????N????N?????N?C??N????????????A???N

output:

-1

result:

ok correct

Test #114:

score: 0
Accepted
time: 4ms
memory: 52916kb

input:

40 116
?CN????????A??A???C????????????????C????

output:

ZCNAAAAAAACAACACCCCCCCCCZZZZZZZZZZZCZZZZ

result:

ok correct

Test #115:

score: 0
Accepted
time: 20ms
memory: 51676kb

input:

40 538
NC???N?????????????NN??N????????CC???N??

output:

NCAAANAAAAAAAACAAACNNAANACCCCCCCCCCCCNCZ

result:

ok correct

Test #116:

score: 0
Accepted
time: 17ms
memory: 53328kb

input:

40 1128
?????AN?????CN????N?A????C???C??????????

output:

NNANAANAAAAACNCAAANAAAACCCCCCCCCCCCCCCCZ

result:

ok correct

Test #117:

score: 0
Accepted
time: 17ms
memory: 53712kb

input:

40 1819
?????????C?AC?????C??A??NC?????????????C

output:

-1

result:

ok correct

Test #118:

score: 0
Accepted
time: 8ms
memory: 53548kb

input:

40 2198
??????A???N????????ANN???N?C??????C?????

output:

-1

result:

ok correct

Test #119:

score: 0
Accepted
time: 8ms
memory: 52860kb

input:

40 373
???????????C?A?????????A???A?C??????????

output:

NANAAAAACAACAAAAACCCCCCACCCACCCCZZZZZZZZ

result:

ok correct

Test #120:

score: 0
Accepted
time: 19ms
memory: 51688kb

input:

40 744
?????????????????C????????????A????C???N

output:

NNNAAAAAAAAACAAAACCCCCCCCCCCCCACCCCCZZZN

result:

ok correct

Test #121:

score: 0
Accepted
time: 15ms
memory: 52956kb

input:

40 1103
???????????????????????????N????????????

output:

NNNANAAAAAAACAAAAAAAAACCCCCNCCCCCCCCCCCZ

result:

ok correct

Test #122:

score: 0
Accepted
time: 7ms
memory: 52864kb

input:

40 1866
???????A??????A??A???????????????C??????

output:

NNNNNNNAANAAAAAAAAAAACAAACCCCCCCCCCCCCCZ

result:

ok correct

Test #123:

score: 0
Accepted
time: 22ms
memory: 53408kb

input:

40 2466
????????????CN?????????????????N??CA????

output:

-1

result:

ok correct

Test #124:

score: 0
Accepted
time: 13ms
memory: 52880kb

input:

40 1
?????????????????????????????????????NAC

output:

ZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZNAC

result:

ok correct