結果

問題 No.2021 Not A but B
ユーザー H20H20
提出日時 2022-07-29 22:11:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 114,772 KB
最終ジャッジ日時 2024-07-19 15:02:18
合計ジャッジ時間 5,507 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,644 KB
testcase_01 AC 41 ms
52,212 KB
testcase_02 AC 39 ms
52,440 KB
testcase_03 AC 39 ms
52,072 KB
testcase_04 AC 39 ms
53,420 KB
testcase_05 AC 40 ms
52,668 KB
testcase_06 AC 39 ms
53,700 KB
testcase_07 AC 39 ms
52,740 KB
testcase_08 AC 225 ms
101,452 KB
testcase_09 AC 226 ms
101,600 KB
testcase_10 AC 226 ms
101,740 KB
testcase_11 AC 216 ms
101,468 KB
testcase_12 AC 218 ms
101,372 KB
testcase_13 AC 219 ms
101,652 KB
testcase_14 AC 224 ms
101,212 KB
testcase_15 AC 219 ms
101,284 KB
testcase_16 AC 218 ms
101,612 KB
testcase_17 AC 218 ms
101,452 KB
testcase_18 AC 228 ms
101,548 KB
testcase_19 AC 227 ms
101,912 KB
testcase_20 AC 229 ms
101,576 KB
testcase_21 AC 59 ms
65,904 KB
testcase_22 AC 57 ms
65,536 KB
testcase_23 AC 56 ms
64,468 KB
testcase_24 AC 45 ms
60,608 KB
testcase_25 AC 58 ms
64,020 KB
testcase_26 AC 139 ms
69,796 KB
testcase_27 AC 247 ms
114,772 KB
testcase_28 AC 240 ms
114,272 KB
testcase_29 AC 269 ms
102,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(input())
mod = 10**9+9
v = 0
for i,s in enumerate(S):
    if s=='B':
        v+=pow(2,i,mod)
ANS = set()
for i in range(N-1):
    temp = v
    if S[i]=='A':
        temp+=pow(2,i,mod)
    if S[i+1]=='A':
        temp+=pow(2,i+1,mod)
    ANS.add(temp)
print(len(ANS))
0