結果

問題 No.2021 Not A but B
ユーザー EguyEguy
提出日時 2022-07-29 21:43:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 72,320 KB
最終ジャッジ日時 2024-07-19 14:07:30
合計ジャッジ時間 2,733 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,344 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 39 ms
52,260 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 38 ms
51,584 KB
testcase_08 AC 64 ms
71,040 KB
testcase_09 AC 64 ms
72,320 KB
testcase_10 AC 64 ms
72,064 KB
testcase_11 AC 62 ms
71,296 KB
testcase_12 AC 63 ms
70,912 KB
testcase_13 AC 64 ms
72,064 KB
testcase_14 AC 63 ms
72,192 KB
testcase_15 AC 64 ms
71,936 KB
testcase_16 AC 62 ms
70,656 KB
testcase_17 AC 63 ms
71,296 KB
testcase_18 AC 64 ms
72,064 KB
testcase_19 AC 63 ms
71,808 KB
testcase_20 AC 63 ms
71,808 KB
testcase_21 AC 50 ms
61,440 KB
testcase_22 AC 50 ms
61,440 KB
testcase_23 AC 50 ms
61,568 KB
testcase_24 AC 44 ms
58,112 KB
testcase_25 AC 51 ms
61,952 KB
testcase_26 AC 55 ms
69,120 KB
testcase_27 AC 55 ms
69,760 KB
testcase_28 AC 56 ms
69,376 KB
testcase_29 AC 54 ms
68,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, math
sys.setrecursionlimit(1000000)
INF = 1 << 100
#mod = 1000000007
mod = 998244353
input = lambda: sys.stdin.readline().rstrip()
li = lambda: list(map(int, input().split()))

N = int(input())
S = list(input())
ans = N-1

for i in range(1, N-1):
    if S[i-1] == S[i+1] == 'B' and S[i] == 'A':
        ans -= 1

flg = 0
for i in range(N-1):
    if S[i] == S[i+1] == 'B':
        ans -= 1
        flg = 1

print(ans + flg)
0