結果

問題 No.2021 Not A but B
ユーザー tktk_snsntktk_snsn
提出日時 2022-07-29 21:54:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,208 KB
最終ジャッジ日時 2024-07-19 14:26:52
合計ジャッジ時間 3,880 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 142 ms
18,288 KB
testcase_09 AC 146 ms
18,164 KB
testcase_10 AC 141 ms
18,164 KB
testcase_11 AC 138 ms
17,648 KB
testcase_12 AC 138 ms
17,640 KB
testcase_13 AC 142 ms
17,900 KB
testcase_14 AC 143 ms
18,032 KB
testcase_15 AC 139 ms
18,036 KB
testcase_16 AC 140 ms
18,032 KB
testcase_17 AC 139 ms
17,772 KB
testcase_18 AC 142 ms
18,288 KB
testcase_19 AC 143 ms
18,292 KB
testcase_20 AC 142 ms
18,168 KB
testcase_21 AC 37 ms
11,136 KB
testcase_22 AC 34 ms
10,880 KB
testcase_23 AC 34 ms
10,752 KB
testcase_24 AC 31 ms
10,624 KB
testcase_25 AC 34 ms
10,752 KB
testcase_26 AC 74 ms
11,136 KB
testcase_27 AC 168 ms
20,208 KB
testcase_28 AC 167 ms
19,820 KB
testcase_29 AC 74 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def RunLengthEncoding(S):
    res = []
    N = len(S)
    i = 0
    while i < N:
        cnt = 1
        while i < N - 1 and S[i] == S[i + 1]:
            cnt += 1
            i += 1
        res.append((S[i], cnt))
        i += 1
    return res


N = int(input())
S = input()


ans = 0
bb = 0

RLE = RunLengthEncoding(S)

for i, (k, v) in enumerate(RLE):
    if k == "A":
        ans += v - 1
        if v == 1:
            ans += 1
        else:
            ans += i > 0
            ans += i < len(RLE) - 1
    else:
        if v > 1:
            bb = 1

print(ans + bb)
0