結果

問題 No.2276 I Want AC
ユーザー jianglyjiangly
提出日時 2023-04-21 21:26:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 76,064 KB
最終ジャッジ日時 2024-11-06 14:53:52
合計ジャッジ時間 5,540 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
51,584 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 42 ms
51,840 KB
testcase_11 AC 61 ms
71,424 KB
testcase_12 AC 67 ms
75,588 KB
testcase_13 AC 60 ms
71,296 KB
testcase_14 AC 54 ms
66,560 KB
testcase_15 AC 63 ms
75,392 KB
testcase_16 AC 64 ms
75,360 KB
testcase_17 AC 66 ms
75,472 KB
testcase_18 AC 65 ms
75,348 KB
testcase_19 AC 53 ms
63,104 KB
testcase_20 AC 67 ms
75,984 KB
testcase_21 AC 58 ms
72,576 KB
testcase_22 AC 55 ms
66,944 KB
testcase_23 AC 70 ms
75,776 KB
testcase_24 AC 69 ms
75,776 KB
testcase_25 AC 70 ms
75,904 KB
testcase_26 AC 65 ms
76,064 KB
testcase_27 AC 68 ms
75,760 KB
testcase_28 AC 72 ms
75,648 KB
testcase_29 AC 65 ms
76,032 KB
testcase_30 AC 67 ms
75,912 KB
testcase_31 AC 65 ms
75,836 KB
testcase_32 AC 68 ms
75,644 KB
testcase_33 AC 67 ms
75,928 KB
testcase_34 AC 66 ms
75,904 KB
testcase_35 AC 47 ms
59,392 KB
testcase_36 AC 47 ms
59,392 KB
testcase_37 AC 51 ms
60,288 KB
testcase_38 AC 58 ms
75,648 KB
testcase_39 AC 58 ms
75,556 KB
testcase_40 AC 61 ms
75,856 KB
testcase_41 AC 59 ms
76,060 KB
testcase_42 AC 61 ms
75,560 KB
testcase_43 AC 61 ms
75,648 KB
testcase_44 AC 64 ms
75,648 KB
testcase_45 AC 64 ms
75,656 KB
testcase_46 AC 64 ms
75,648 KB
testcase_47 AC 67 ms
75,676 KB
testcase_48 AC 66 ms
75,560 KB
testcase_49 AC 63 ms
75,820 KB
testcase_50 AC 63 ms
75,520 KB
testcase_51 AC 66 ms
75,368 KB
testcase_52 AC 65 ms
76,044 KB
testcase_53 AC 68 ms
76,032 KB
testcase_54 AC 64 ms
75,632 KB
testcase_55 AC 65 ms
75,648 KB
testcase_56 AC 65 ms
75,560 KB
testcase_57 AC 62 ms
75,696 KB
testcase_58 AC 66 ms
75,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
ans = 0

prea = 0
sufc = 0
for x in S :
    if x != 'A' :
        sufc += 1

for x in S :
    if x != 'A' :
        sufc -= 1
    if x != 'C' :
        prea += 1
    ans += min(prea, sufc)

print(ans)
0