結果

問題 No.2276 I Want AC
ユーザー titiatitia
提出日時 2023-04-22 00:37:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 934 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 23,892 KB
最終ジャッジ日時 2024-11-06 17:43:53
合計ジャッジ時間 42,257 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 286 ms
12,972 KB
testcase_12 AC 909 ms
17,516 KB
testcase_13 AC 329 ms
12,800 KB
testcase_14 AC 194 ms
12,160 KB
testcase_15 AC 564 ms
14,720 KB
testcase_16 AC 485 ms
14,164 KB
testcase_17 AC 1,136 ms
18,124 KB
testcase_18 AC 720 ms
15,872 KB
testcase_19 AC 59 ms
11,008 KB
testcase_20 AC 1,405 ms
20,560 KB
testcase_21 AC 356 ms
13,696 KB
testcase_22 AC 187 ms
11,960 KB
testcase_23 AC 948 ms
18,644 KB
testcase_24 AC 947 ms
18,392 KB
testcase_25 AC 1,126 ms
18,644 KB
testcase_26 AC 1,411 ms
20,436 KB
testcase_27 AC 1,259 ms
19,540 KB
testcase_28 AC 968 ms
17,880 KB
testcase_29 AC 839 ms
16,728 KB
testcase_30 AC 1,183 ms
19,284 KB
testcase_31 AC 621 ms
15,960 KB
testcase_32 AC 1,325 ms
19,548 KB
testcase_33 AC 1,111 ms
19,160 KB
testcase_34 AC 1,461 ms
21,336 KB
testcase_35 AC 87 ms
14,040 KB
testcase_36 AC 79 ms
14,172 KB
testcase_37 AC 1,764 ms
23,768 KB
testcase_38 AC 276 ms
15,704 KB
testcase_39 AC 230 ms
15,828 KB
testcase_40 AC 165 ms
15,700 KB
testcase_41 AC 194 ms
15,576 KB
testcase_42 TLE -
testcase_43 AC 1,811 ms
23,892 KB
testcase_44 AC 93 ms
14,292 KB
testcase_45 AC 1,323 ms
19,924 KB
testcase_46 AC 1,305 ms
19,672 KB
testcase_47 AC 232 ms
15,704 KB
testcase_48 AC 204 ms
15,828 KB
testcase_49 AC 1,355 ms
19,800 KB
testcase_50 AC 1,350 ms
19,668 KB
testcase_51 AC 1,330 ms
19,672 KB
testcase_52 AC 1,288 ms
19,924 KB
testcase_53 AC 1,232 ms
19,928 KB
testcase_54 AC 831 ms
17,248 KB
testcase_55 AC 748 ms
16,284 KB
testcase_56 AC 549 ms
16,088 KB
testcase_57 AC 664 ms
15,708 KB
testcase_58 AC 508 ms
16,280 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=-1
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"

   
print(max(score(A),score(B)))
0