結果

問題 No.2021 Not A but B
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-07-29 21:36:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 615 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 73,600 KB
最終ジャッジ日時 2024-07-19 13:41:27
合計ジャッジ時間 2,779 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,968 KB
testcase_01 AC 31 ms
51,584 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 AC 31 ms
52,096 KB
testcase_04 AC 31 ms
51,584 KB
testcase_05 AC 33 ms
51,840 KB
testcase_06 AC 32 ms
51,840 KB
testcase_07 AC 34 ms
51,712 KB
testcase_08 AC 51 ms
72,960 KB
testcase_09 AC 51 ms
73,336 KB
testcase_10 AC 49 ms
73,344 KB
testcase_11 AC 51 ms
72,960 KB
testcase_12 AC 53 ms
73,088 KB
testcase_13 AC 54 ms
73,088 KB
testcase_14 AC 54 ms
73,600 KB
testcase_15 AC 54 ms
73,216 KB
testcase_16 AC 53 ms
73,216 KB
testcase_17 AC 51 ms
72,960 KB
testcase_18 AC 52 ms
73,472 KB
testcase_19 AC 53 ms
73,400 KB
testcase_20 AC 55 ms
73,448 KB
testcase_21 AC 40 ms
60,244 KB
testcase_22 AC 42 ms
60,160 KB
testcase_23 AC 41 ms
60,544 KB
testcase_24 AC 40 ms
59,264 KB
testcase_25 AC 39 ms
60,032 KB
testcase_26 AC 47 ms
72,192 KB
testcase_27 AC 48 ms
72,448 KB
testcase_28 AC 46 ms
71,780 KB
testcase_29 AC 50 ms
72,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from sys import stdin

N = int(stdin.readline())

bb = 0
other = 0

S = stdin.readline()[:-1]

for i in range(N-1):

    if S[i]+S[i+1] == "BB":
        bb += 1
    else:
        other += 1

ans = other + min(bb,1)

for i in range(N-2):
    if S[i]+S[i+1]+S[i+2] == "BAB":
        ans -= 1

print (ans)
0