結果

問題 No.2021 Not A but B
ユーザー KazunKazun
提出日時 2022-07-29 21:33:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 236 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 102,912 KB
最終ジャッジ日時 2024-07-19 13:15:33
合計ジャッジ時間 2,945 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 35 ms
51,456 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 AC 36 ms
51,456 KB
testcase_06 AC 35 ms
51,456 KB
testcase_07 AC 35 ms
51,712 KB
testcase_08 AC 77 ms
88,448 KB
testcase_09 AC 79 ms
89,088 KB
testcase_10 AC 77 ms
88,704 KB
testcase_11 AC 77 ms
88,448 KB
testcase_12 AC 77 ms
88,448 KB
testcase_13 AC 77 ms
88,832 KB
testcase_14 AC 84 ms
89,472 KB
testcase_15 AC 79 ms
88,832 KB
testcase_16 AC 79 ms
88,576 KB
testcase_17 AC 77 ms
89,088 KB
testcase_18 AC 78 ms
88,704 KB
testcase_19 AC 80 ms
89,216 KB
testcase_20 AC 79 ms
89,344 KB
testcase_21 AC 47 ms
63,488 KB
testcase_22 AC 48 ms
62,592 KB
testcase_23 AC 46 ms
62,336 KB
testcase_24 AC 40 ms
59,520 KB
testcase_25 AC 46 ms
62,336 KB
testcase_26 AC 45 ms
59,904 KB
testcase_27 AC 90 ms
102,912 KB
testcase_28 AC 90 ms
102,656 KB
testcase_29 AC 85 ms
96,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input()

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

print(len(E))
0