結果

問題 No.2021 Not A but B
ユーザー ShirotsumeShirotsume
提出日時 2022-07-29 21:36:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 889 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 71,808 KB
最終ジャッジ日時 2024-07-19 13:41:41
合計ジャッジ時間 2,717 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 39 ms
51,584 KB
testcase_06 AC 39 ms
51,456 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 56 ms
71,296 KB
testcase_09 AC 56 ms
71,552 KB
testcase_10 AC 55 ms
71,296 KB
testcase_11 AC 56 ms
70,784 KB
testcase_12 AC 56 ms
70,912 KB
testcase_13 AC 55 ms
71,296 KB
testcase_14 AC 54 ms
70,912 KB
testcase_15 AC 55 ms
71,552 KB
testcase_16 AC 56 ms
70,400 KB
testcase_17 AC 55 ms
70,400 KB
testcase_18 AC 55 ms
71,168 KB
testcase_19 AC 55 ms
71,040 KB
testcase_20 AC 55 ms
71,680 KB
testcase_21 AC 46 ms
59,648 KB
testcase_22 AC 46 ms
60,160 KB
testcase_23 AC 47 ms
59,392 KB
testcase_24 AC 44 ms
58,112 KB
testcase_25 AC 46 ms
59,008 KB
testcase_26 AC 48 ms
64,640 KB
testcase_27 AC 53 ms
71,808 KB
testcase_28 AC 54 ms
70,912 KB
testcase_29 AC 53 ms
71,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
n = ii()
s = input()

ans = 0
t = False
for i in range(n - 1):
    if s[i] + s[i + 1] == 'BB':
        t = True
    elif i < n - 2 and s[i] + s[i + 1] + s[i + 2] == 'BAB':
        pass
    else:
        ans += 1
print(ans + t)
0