結果

問題 No.2021 Not A but B
ユーザー deepjugglingdeepjuggling
提出日時 2023-01-17 22:51:15
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 324 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 72,576 KB
最終ジャッジ日時 2024-06-11 00:25:12
合計ジャッジ時間 3,443 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 61 ms
72,192 KB
testcase_09 AC 61 ms
72,320 KB
testcase_10 AC 59 ms
72,192 KB
testcase_11 AC 58 ms
71,808 KB
testcase_12 AC 59 ms
71,680 KB
testcase_13 AC 59 ms
72,192 KB
testcase_14 AC 59 ms
72,320 KB
testcase_15 AC 61 ms
72,064 KB
testcase_16 AC 61 ms
71,680 KB
testcase_17 AC 60 ms
71,680 KB
testcase_18 AC 61 ms
72,192 KB
testcase_19 AC 58 ms
72,192 KB
testcase_20 AC 59 ms
72,576 KB
testcase_21 AC 49 ms
62,464 KB
testcase_22 AC 49 ms
61,824 KB
testcase_23 AC 50 ms
62,336 KB
testcase_24 AC 40 ms
58,496 KB
testcase_25 AC 48 ms
61,440 KB
testcase_26 AC 49 ms
68,480 KB
testcase_27 AC 51 ms
69,528 KB
testcase_28 AC 51 ms
69,760 KB
testcase_29 AC 47 ms
68,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
s = list(s)
fra = 0
an = ["B","B",s[2]]
ans = 1
if s[0] == "B" and s[1] == "B":
    fra = 1
for i in range(n-2):
    if s[i+1] == "B" and s[i+2] == "B":
        if fra == 0:
            fra = 1
        else:
            continue
    if s[i] != "B" or s[i+2] != "B":
        ans += 1
print(ans)

0