結果

問題 No.2021 Not A but B
ユーザー shobonvipshobonvip
提出日時 2022-07-29 21:39:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 94,060 KB
最終ジャッジ日時 2024-07-19 13:56:39
合計ジャッジ時間 3,475 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 42 ms
52,224 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 89 ms
87,500 KB
testcase_09 AC 87 ms
87,392 KB
testcase_10 AC 87 ms
87,432 KB
testcase_11 AC 85 ms
87,424 KB
testcase_12 AC 87 ms
86,932 KB
testcase_13 AC 88 ms
87,248 KB
testcase_14 AC 90 ms
86,952 KB
testcase_15 AC 87 ms
87,128 KB
testcase_16 AC 85 ms
87,684 KB
testcase_17 AC 85 ms
87,544 KB
testcase_18 AC 86 ms
87,156 KB
testcase_19 AC 88 ms
87,456 KB
testcase_20 AC 86 ms
87,264 KB
testcase_21 AC 56 ms
65,280 KB
testcase_22 AC 55 ms
63,872 KB
testcase_23 AC 57 ms
64,852 KB
testcase_24 AC 47 ms
60,032 KB
testcase_25 AC 56 ms
64,256 KB
testcase_26 AC 51 ms
64,000 KB
testcase_27 AC 96 ms
94,060 KB
testcase_28 AC 96 ms
93,672 KB
testcase_29 AC 91 ms
93,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()

mask = 10000000
w = set()
for i in range(n-1):
	tmp = []
	if s[i] == "A":
		tmp.append(i+1)
	if s[i+1] == "A":
		tmp.append(i+2)
	v = 1
	l = 0
	for j in tmp:
		l += v * j
		v *= mask
	w.add(l)

print(len(w))
0