結果

問題 No.2276 I Want AC
ユーザー timitimi
提出日時 2023-04-21 22:02:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 128,040 KB
最終ジャッジ日時 2024-11-06 15:32:58
合計ジャッジ時間 6,824 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,472 KB
testcase_01 AC 39 ms
51,752 KB
testcase_02 AC 38 ms
53,096 KB
testcase_03 AC 38 ms
52,812 KB
testcase_04 AC 39 ms
52,436 KB
testcase_05 AC 39 ms
52,540 KB
testcase_06 AC 38 ms
52,408 KB
testcase_07 AC 39 ms
52,644 KB
testcase_08 AC 39 ms
52,088 KB
testcase_09 AC 39 ms
52,536 KB
testcase_10 AC 38 ms
52,568 KB
testcase_11 AC 69 ms
80,080 KB
testcase_12 AC 97 ms
110,020 KB
testcase_13 AC 67 ms
78,540 KB
testcase_14 AC 60 ms
71,840 KB
testcase_15 AC 76 ms
89,676 KB
testcase_16 AC 77 ms
87,692 KB
testcase_17 AC 96 ms
110,932 KB
testcase_18 AC 84 ms
96,344 KB
testcase_19 AC 56 ms
65,656 KB
testcase_20 AC 104 ms
118,028 KB
testcase_21 AC 73 ms
83,388 KB
testcase_22 AC 61 ms
72,408 KB
testcase_23 AC 101 ms
114,520 KB
testcase_24 AC 103 ms
115,412 KB
testcase_25 AC 100 ms
115,132 KB
testcase_26 AC 101 ms
117,508 KB
testcase_27 AC 100 ms
116,356 KB
testcase_28 AC 97 ms
113,028 KB
testcase_29 AC 94 ms
110,936 KB
testcase_30 AC 99 ms
116,552 KB
testcase_31 AC 93 ms
109,272 KB
testcase_32 AC 103 ms
116,776 KB
testcase_33 AC 100 ms
116,440 KB
testcase_34 AC 100 ms
119,404 KB
testcase_35 AC 80 ms
104,652 KB
testcase_36 AC 81 ms
103,884 KB
testcase_37 AC 101 ms
121,040 KB
testcase_38 AC 86 ms
106,600 KB
testcase_39 AC 86 ms
107,256 KB
testcase_40 AC 90 ms
107,256 KB
testcase_41 AC 90 ms
108,256 KB
testcase_42 AC 111 ms
124,388 KB
testcase_43 AC 115 ms
128,040 KB
testcase_44 AC 89 ms
106,164 KB
testcase_45 AC 99 ms
115,052 KB
testcase_46 AC 100 ms
115,996 KB
testcase_47 AC 92 ms
108,744 KB
testcase_48 AC 95 ms
108,412 KB
testcase_49 AC 110 ms
118,996 KB
testcase_50 AC 108 ms
118,992 KB
testcase_51 AC 118 ms
119,092 KB
testcase_52 AC 109 ms
119,076 KB
testcase_53 AC 103 ms
116,892 KB
testcase_54 AC 102 ms
113,192 KB
testcase_55 AC 100 ms
112,680 KB
testcase_56 AC 96 ms
109,860 KB
testcase_57 AC 91 ms
110,120 KB
testcase_58 AC 93 ms
109,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input()
A,C,B=[],[],[];a,c,b=0,0,0
D=[]
for i in range(N):
  if S[i]=='A':
    a+=1
  elif S[i]=='C':
    c+=1 
  else:
    b+=1
    D.append(i)
  A.append(a);C.append(c);B.append(b)

ans=0
for i in range(N):
  if S[i]!='A':
    ans+=A[i]

now=ans;ss=S.count('?')
bl,br=0,ss-1
for i in range(ss):
  d=D[i]
  al,cr=A[d],C[-1]-C[d]
  now+=br+cr-al-bl
  ans=max(ans,now)
  bl+=1;br-=1
print(ans)
  
0