結果

問題 No.2021 Not A but B
ユーザー 👑 rin204rin204
提出日時 2022-08-21 06:30:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 266 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 94,332 KB
最終ジャッジ日時 2024-10-09 21:06:46
合計ジャッジ時間 3,824 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 40 ms
52,096 KB
testcase_03 WA -
testcase_04 AC 40 ms
51,712 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 92 ms
87,052 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 89 ms
87,080 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 91 ms
87,216 KB
testcase_20 AC 87 ms
87,368 KB
testcase_21 AC 57 ms
64,512 KB
testcase_22 AC 55 ms
63,744 KB
testcase_23 AC 57 ms
64,384 KB
testcase_24 AC 47 ms
59,776 KB
testcase_25 AC 57 ms
64,128 KB
testcase_26 AC 51 ms
63,744 KB
testcase_27 AC 99 ms
94,332 KB
testcase_28 AC 102 ms
93,940 KB
testcase_29 AC 96 ms
93,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = input()
se = set()
for i in range(1, n):
    lst = []
    if S[i - 1] == "A":
        lst.append(i - 1)
    if S[i] == "A":
        lst.append(i)
    tot = 0
    for l in lst:
        tot *= n
        tot += l
    
    se.add(tot)
print(len(se))
0