結果

問題 No.2541 Divide 01 String
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-11-25 10:23:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 89,556 KB
最終ジャッジ日時 2024-09-26 10:15:20
合計ジャッジ時間 2,569 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,456 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 35 ms
51,584 KB
testcase_03 AC 46 ms
65,664 KB
testcase_04 AC 54 ms
78,592 KB
testcase_05 AC 69 ms
87,660 KB
testcase_06 AC 50 ms
76,160 KB
testcase_07 AC 63 ms
87,808 KB
testcase_08 AC 67 ms
89,472 KB
testcase_09 AC 65 ms
89,192 KB
testcase_10 AC 61 ms
89,556 KB
testcase_11 AC 65 ms
89,472 KB
testcase_12 AC 65 ms
89,472 KB
testcase_13 AC 35 ms
51,840 KB
testcase_14 AC 35 ms
51,584 KB
testcase_15 AC 35 ms
51,584 KB
testcase_16 AC 35 ms
51,584 KB
testcase_17 AC 37 ms
51,840 KB
testcase_18 AC 56 ms
83,328 KB
testcase_19 AC 58 ms
83,456 KB
testcase_20 AC 57 ms
83,520 KB
testcase_21 AC 49 ms
76,800 KB
testcase_22 AC 49 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = list(map(int,input()))
mod = 998244353

dp = [1,0]

for s in S:
    ndp = [0,0]
    if s:
        ndp[1] = (dp[1]*2 + dp[0]) % mod
    else:
        ndp[0] = (dp[0] + dp[1]) % mod
        ndp[1] = dp[1]
    dp = ndp

print(dp[1])
    
0