結果

問題 No.2021 Not A but B
ユーザー ohanaohana
提出日時 2023-10-02 13:03:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 90,584 KB
最終ジャッジ日時 2024-07-26 13:43:39
合計ジャッジ時間 3,600 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 38 ms
52,268 KB
testcase_08 AC 107 ms
88,520 KB
testcase_09 AC 105 ms
88,408 KB
testcase_10 AC 107 ms
88,864 KB
testcase_11 AC 111 ms
88,496 KB
testcase_12 AC 107 ms
88,884 KB
testcase_13 AC 106 ms
88,776 KB
testcase_14 AC 107 ms
88,732 KB
testcase_15 AC 105 ms
88,696 KB
testcase_16 AC 106 ms
88,636 KB
testcase_17 AC 105 ms
88,472 KB
testcase_18 AC 107 ms
88,264 KB
testcase_19 AC 106 ms
88,656 KB
testcase_20 AC 107 ms
88,496 KB
testcase_21 AC 51 ms
65,024 KB
testcase_22 AC 50 ms
62,976 KB
testcase_23 AC 50 ms
63,104 KB
testcase_24 AC 43 ms
58,368 KB
testcase_25 AC 51 ms
63,744 KB
testcase_26 AC 58 ms
79,872 KB
testcase_27 AC 111 ms
90,480 KB
testcase_28 AC 113 ms
90,584 KB
testcase_29 AC 59 ms
79,488 KB
権限があれば一括ダウンロードができます

ソースコード

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" and A[0][1] != 1) + (A[-1][0] == "A" and A[-1][1] != 1)

print(ans)
0