結果

問題 No.2276 I Want AC
ユーザー とりゐとりゐ
提出日時 2023-04-21 23:02:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,063 ms / 2,000 ms
コード長 737 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 258,460 KB
最終ジャッジ日時 2024-11-06 16:29:28
合計ジャッジ時間 29,406 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,252 KB
testcase_01 AC 38 ms
52,988 KB
testcase_02 AC 39 ms
52,720 KB
testcase_03 AC 38 ms
52,192 KB
testcase_04 AC 38 ms
52,204 KB
testcase_05 AC 39 ms
52,356 KB
testcase_06 AC 39 ms
52,268 KB
testcase_07 AC 39 ms
53,316 KB
testcase_08 AC 39 ms
52,004 KB
testcase_09 AC 37 ms
52,732 KB
testcase_10 AC 38 ms
52,560 KB
testcase_11 AC 259 ms
130,312 KB
testcase_12 AC 743 ms
208,900 KB
testcase_13 AC 267 ms
121,880 KB
testcase_14 AC 132 ms
92,808 KB
testcase_15 AC 428 ms
173,444 KB
testcase_16 AC 361 ms
145,648 KB
testcase_17 AC 650 ms
198,524 KB
testcase_18 AC 543 ms
181,440 KB
testcase_19 AC 67 ms
75,712 KB
testcase_20 AC 805 ms
215,056 KB
testcase_21 AC 312 ms
140,096 KB
testcase_22 AC 161 ms
103,856 KB
testcase_23 AC 865 ms
217,016 KB
testcase_24 AC 786 ms
216,840 KB
testcase_25 AC 906 ms
215,416 KB
testcase_26 AC 810 ms
203,480 KB
testcase_27 AC 779 ms
241,180 KB
testcase_28 AC 694 ms
191,060 KB
testcase_29 AC 626 ms
258,460 KB
testcase_30 AC 1,048 ms
238,440 KB
testcase_31 AC 543 ms
258,236 KB
testcase_32 AC 828 ms
200,980 KB
testcase_33 AC 1,063 ms
238,444 KB
testcase_34 AC 767 ms
215,920 KB
testcase_35 AC 49 ms
68,752 KB
testcase_36 AC 50 ms
69,160 KB
testcase_37 AC 674 ms
162,920 KB
testcase_38 AC 280 ms
219,388 KB
testcase_39 AC 222 ms
180,000 KB
testcase_40 AC 262 ms
180,008 KB
testcase_41 AC 292 ms
207,228 KB
testcase_42 AC 723 ms
217,860 KB
testcase_43 AC 674 ms
222,708 KB
testcase_44 AC 59 ms
72,072 KB
testcase_45 AC 817 ms
199,812 KB
testcase_46 AC 857 ms
241,096 KB
testcase_47 AC 278 ms
193,540 KB
testcase_48 AC 281 ms
193,404 KB
testcase_49 AC 770 ms
198,128 KB
testcase_50 AC 868 ms
242,816 KB
testcase_51 AC 769 ms
241,232 KB
testcase_52 AC 781 ms
241,348 KB
testcase_53 AC 853 ms
202,000 KB
testcase_54 AC 615 ms
201,912 KB
testcase_55 AC 579 ms
202,236 KB
testcase_56 AC 573 ms
198,144 KB
testcase_57 AC 483 ms
258,008 KB
testcase_58 AC 731 ms
186,768 KB
権限があれば一括ダウンロードができます

ソースコード

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=[]
  if mid==-1:
    x=-1
  elif mid==m:
    x=n
  else:
    x=B[mid]
  for i in range(n):
    if s[i]=='A' or (s[i]=='?' and i<=x):
      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):
    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