結果

問題 No.2276 I Want AC
ユーザー titiatitia
提出日時 2023-04-22 00:27:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,034 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,780 KB
最終ジャッジ日時 2024-11-06 17:36:52
合計ジャッジ時間 43,402 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 WA -
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 310 ms
12,928 KB
testcase_12 AC 906 ms
17,488 KB
testcase_13 AC 338 ms
12,928 KB
testcase_14 AC 196 ms
12,032 KB
testcase_15 AC 592 ms
14,720 KB
testcase_16 AC 489 ms
14,208 KB
testcase_17 AC 1,111 ms
18,268 KB
testcase_18 AC 742 ms
16,004 KB
testcase_19 AC 59 ms
11,008 KB
testcase_20 AC 1,421 ms
20,576 KB
testcase_21 AC 404 ms
13,568 KB
testcase_22 AC 195 ms
12,104 KB
testcase_23 AC 995 ms
18,536 KB
testcase_24 AC 957 ms
18,404 KB
testcase_25 AC 1,188 ms
18,536 KB
testcase_26 AC 1,427 ms
20,324 KB
testcase_27 AC 1,363 ms
19,428 KB
testcase_28 AC 1,028 ms
17,768 KB
testcase_29 AC 888 ms
16,744 KB
testcase_30 AC 1,208 ms
19,044 KB
testcase_31 AC 646 ms
15,976 KB
testcase_32 AC 1,346 ms
19,432 KB
testcase_33 AC 1,128 ms
19,044 KB
testcase_34 AC 1,504 ms
21,480 KB
testcase_35 AC 134 ms
14,180 KB
testcase_36 AC 108 ms
14,308 KB
testcase_37 AC 1,806 ms
23,652 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 210 ms
15,588 KB
testcase_41 AC 239 ms
15,720 KB
testcase_42 TLE -
testcase_43 AC 1,815 ms
23,656 KB
testcase_44 AC 145 ms
14,184 KB
testcase_45 AC 1,444 ms
19,684 KB
testcase_46 AC 1,357 ms
19,684 KB
testcase_47 AC 258 ms
15,592 KB
testcase_48 AC 202 ms
15,716 KB
testcase_49 AC 1,340 ms
19,816 KB
testcase_50 AC 1,376 ms
19,684 KB
testcase_51 AC 1,406 ms
19,812 KB
testcase_52 AC 1,352 ms
19,816 KB
testcase_53 AC 1,220 ms
19,684 KB
testcase_54 AC 840 ms
17,132 KB
testcase_55 AC 798 ms
16,300 KB
testcase_56 AC 596 ms
16,104 KB
testcase_57 WA -
testcase_58 AC 558 ms
16,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
S=input().strip()

LIST=[]

for i in range(N):
    if S[i]=="?":
        LIST.append(i)

def score(A):
    ANS=0
    now=0

    for x in A:
        if x=="A":
            now+=1
        else:
            ANS+=now
    return ANS


MIN=0
MAX=len(LIST)-1

while MAX>MIN+1:
    l=(MIN+MAX)//2

    A=list(S)
    B=list(S)

    for i in range(len(LIST)):
        if i<=l:
            A[LIST[i]]="A"
        else:
            A[LIST[i]]="C"

        if i<=l+1:
            B[LIST[i]]="A"
        else:
            B[LIST[i]]="C"

    if score(A)<score(B):
        MIN=l+1
    elif score(A)>score(B):
        MAX=l
    else:
        MIN=l
        MAX=l+1

l=MIN
A=list(S)
B=list(S)

for i in range(len(LIST)):
    if i<=l:
        A[LIST[i]]="A"
    else:
        A[LIST[i]]="C"

    if i<=l+1:
        B[LIST[i]]="A"
    else:
        B[LIST[i]]="C"

if score(A)<score(B):
    MIN=l+1
elif score(A)>score(B):
    MAX=l
else:
    MIN=l
    MAX=l+1
        
print(max(score(A),score(B)))
0