結果

問題 No.2021 Not A but B
ユーザー ohanaohana
提出日時 2023-10-02 12:59:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 322 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 90,872 KB
最終ジャッジ日時 2024-07-26 13:43:35
合計ジャッジ時間 3,653 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 WA -
testcase_05 AC 35 ms
51,968 KB
testcase_06 WA -
testcase_07 AC 34 ms
52,224 KB
testcase_08 WA -
testcase_09 AC 89 ms
88,512 KB
testcase_10 WA -
testcase_11 AC 87 ms
88,760 KB
testcase_12 AC 85 ms
89,104 KB
testcase_13 AC 87 ms
89,088 KB
testcase_14 AC 90 ms
89,028 KB
testcase_15 WA -
testcase_16 AC 93 ms
88,340 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 93 ms
88,780 KB
testcase_20 WA -
testcase_21 AC 49 ms
64,512 KB
testcase_22 AC 45 ms
62,720 KB
testcase_23 AC 44 ms
62,976 KB
testcase_24 AC 39 ms
58,112 KB
testcase_25 AC 47 ms
64,128 KB
testcase_26 AC 54 ms
79,616 KB
testcase_27 AC 93 ms
90,872 KB
testcase_28 AC 94 ms
90,612 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

n = int(input())
s = input()

A = [(k, len(list(g))) for k, g in itertools.groupby(s)]

ans = 0
for i in range(len(A)):
    if A[i][0] == "A":
        if A[i][1] == 1:
            ans += 1
        else:
            ans += A[i][1] + 1

ans += "BB" in s
ans -= A[0][0] == "A" + A[-1][0] == "A"

print(ans)
0