結果

問題 No.2021 Not A but B
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-07-29 22:00:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 73,188 KB
最終ジャッジ日時 2024-07-19 14:43:17
合計ジャッジ時間 2,529 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,228 KB
testcase_01 AC 37 ms
53,180 KB
testcase_02 AC 37 ms
52,988 KB
testcase_03 AC 37 ms
52,396 KB
testcase_04 AC 37 ms
53,228 KB
testcase_05 AC 37 ms
52,772 KB
testcase_06 AC 37 ms
52,120 KB
testcase_07 AC 36 ms
52,872 KB
testcase_08 AC 51 ms
68,040 KB
testcase_09 AC 50 ms
68,280 KB
testcase_10 AC 51 ms
68,468 KB
testcase_11 AC 52 ms
67,480 KB
testcase_12 AC 51 ms
67,956 KB
testcase_13 AC 50 ms
67,876 KB
testcase_14 AC 49 ms
67,680 KB
testcase_15 AC 50 ms
67,820 KB
testcase_16 AC 50 ms
67,860 KB
testcase_17 AC 51 ms
68,356 KB
testcase_18 AC 50 ms
67,968 KB
testcase_19 AC 49 ms
68,112 KB
testcase_20 AC 50 ms
68,116 KB
testcase_21 AC 45 ms
60,480 KB
testcase_22 AC 43 ms
59,440 KB
testcase_23 AC 44 ms
60,168 KB
testcase_24 AC 37 ms
52,444 KB
testcase_25 AC 43 ms
60,552 KB
testcase_26 AC 50 ms
73,188 KB
testcase_27 AC 46 ms
63,920 KB
testcase_28 AC 44 ms
63,800 KB
testcase_29 AC 37 ms
53,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = input()
ans = 0
if "BB" in S:
    ans += 1
S = S.split("B")
lS = len(S)

for i in range(len(S)):

    s = len(S[i])
    if s == 0:
        continue
    if i == 0:
        if i != lS-1:
            ans += s
        else:
            ans += s-1
            
    elif i == lS-1:
        ans += s
    else:
        if s == 1:
            ans += 1
        else:
            ans += s+1
print(ans)
0