結果

問題 No.2276 I Want AC
ユーザー とりゐとりゐ
提出日時 2023-04-21 22:57:49
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 677 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 81,860 KB
実行使用メモリ 258,628 KB
最終ジャッジ日時 2024-11-06 16:25:20
合計ジャッジ時間 30,136 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,032 KB
testcase_01 AC 38 ms
52,364 KB
testcase_02 AC 38 ms
53,028 KB
testcase_03 AC 39 ms
52,272 KB
testcase_04 AC 38 ms
52,364 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 39 ms
53,620 KB
testcase_09 AC 38 ms
53,192 KB
testcase_10 RE -
testcase_11 AC 260 ms
129,824 KB
testcase_12 AC 767 ms
208,644 KB
testcase_13 AC 250 ms
122,256 KB
testcase_14 AC 144 ms
92,656 KB
testcase_15 AC 436 ms
173,360 KB
testcase_16 AC 370 ms
145,776 KB
testcase_17 AC 691 ms
198,288 KB
testcase_18 AC 505 ms
180,912 KB
testcase_19 AC 67 ms
75,520 KB
testcase_20 AC 840 ms
215,320 KB
testcase_21 AC 324 ms
140,112 KB
testcase_22 AC 165 ms
103,748 KB
testcase_23 AC 864 ms
216,764 KB
testcase_24 AC 808 ms
216,444 KB
testcase_25 AC 875 ms
215,336 KB
testcase_26 AC 848 ms
203,376 KB
testcase_27 AC 786 ms
240,808 KB
testcase_28 AC 708 ms
191,108 KB
testcase_29 AC 632 ms
258,448 KB
testcase_30 AC 1,092 ms
239,688 KB
testcase_31 AC 546 ms
258,004 KB
testcase_32 AC 834 ms
200,972 KB
testcase_33 AC 1,090 ms
240,208 KB
testcase_34 AC 734 ms
216,232 KB
testcase_35 AC 50 ms
68,632 KB
testcase_36 AC 51 ms
69,072 KB
testcase_37 AC 693 ms
163,440 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 723 ms
218,104 KB
testcase_43 AC 699 ms
222,216 KB
testcase_44 AC 54 ms
71,216 KB
testcase_45 AC 865 ms
201,744 KB
testcase_46 AC 886 ms
241,348 KB
testcase_47 AC 301 ms
193,156 KB
testcase_48 AC 307 ms
193,408 KB
testcase_49 AC 821 ms
200,368 KB
testcase_50 AC 904 ms
242,936 KB
testcase_51 AC 795 ms
241,016 KB
testcase_52 AC 830 ms
241,004 KB
testcase_53 AC 905 ms
203,336 KB
testcase_54 AC 624 ms
202,148 KB
testcase_55 AC 578 ms
202,504 KB
testcase_56 AC 578 ms
201,304 KB
testcase_57 WA -
testcase_58 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def count(t):
  A=0
  res=0
  for i in t:
    if i=='A':
      A+=1
    else:
      res+=A
  return res


def calc(mid):
  t=[]
  for i in range(n):
    if s[i]=='A' or (s[i]=='?' and i<=B[mid]):
      t.append('A')
    else:
      t.append('C')
  return count(t)
 

def ternary_search(L,R):
  # 準下凸関数の最小値
  while L+2<R:
    c1=L+(R-L)//3
    c2=R-(R-L)//3
    if calc(c1)>calc(c2):
      R=c2
    else:
      L=c1
  
  ans=0
  for i in range(L,R+1):
    ans=max(ans,calc(i))
  
  return ans

n=int(input())
s=list(input())
B=[]
for i in range(n):
  if s[i]=='?':
    B.append(i)

if len(B)==0:
  print(count(s))
  exit()

m=len(B)
print(ternary_search(-1,m))
0