結果

問題 No.2021 Not A but B
ユーザー PralaPrala
提出日時 2024-08-12 13:32:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 244 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 93,380 KB
最終ジャッジ日時 2024-08-12 13:32:19
合計ジャッジ時間 3,278 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,624 KB
testcase_01 AC 37 ms
53,372 KB
testcase_02 AC 37 ms
52,428 KB
testcase_03 AC 36 ms
53,448 KB
testcase_04 AC 37 ms
53,024 KB
testcase_05 AC 37 ms
52,112 KB
testcase_06 AC 37 ms
52,404 KB
testcase_07 AC 35 ms
52,316 KB
testcase_08 AC 66 ms
84,116 KB
testcase_09 AC 66 ms
84,100 KB
testcase_10 AC 68 ms
83,160 KB
testcase_11 AC 62 ms
81,860 KB
testcase_12 AC 63 ms
81,728 KB
testcase_13 AC 63 ms
83,824 KB
testcase_14 AC 68 ms
84,204 KB
testcase_15 AC 67 ms
83,772 KB
testcase_16 AC 66 ms
83,984 KB
testcase_17 AC 63 ms
81,964 KB
testcase_18 AC 65 ms
83,516 KB
testcase_19 AC 65 ms
82,716 KB
testcase_20 AC 69 ms
83,088 KB
testcase_21 AC 44 ms
63,700 KB
testcase_22 AC 45 ms
61,724 KB
testcase_23 AC 44 ms
62,156 KB
testcase_24 AC 39 ms
59,348 KB
testcase_25 AC 45 ms
61,420 KB
testcase_26 AC 43 ms
60,252 KB
testcase_27 AC 81 ms
91,952 KB
testcase_28 AC 66 ms
91,244 KB
testcase_29 AC 65 ms
93,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
zero = 0
one = set()
two = set()

for i in range(N-1):
	if S[i:i+2] == "AA":
		two.add(i)
	elif S[i:i+2] == "BA":
		one.add(i+1)
	elif S[i:i+2] == "AB":
		one.add(i)
	else:
		zero = 1

print(len(one)+len(two)+zero)
0