結果

問題 No.2541 Divide 01 String
ユーザー ShirotsumeShirotsume
提出日時 2023-08-30 14:04:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 94,464 KB
最終ジャッジ日時 2024-06-10 14:02:15
合計ジャッジ時間 2,928 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,348 KB
testcase_01 AC 35 ms
52,828 KB
testcase_02 AC 36 ms
52,268 KB
testcase_03 AC 47 ms
65,248 KB
testcase_04 AC 49 ms
71,004 KB
testcase_05 AC 81 ms
93,316 KB
testcase_06 AC 51 ms
68,916 KB
testcase_07 AC 85 ms
93,332 KB
testcase_08 AC 89 ms
94,300 KB
testcase_09 AC 87 ms
94,124 KB
testcase_10 AC 83 ms
94,304 KB
testcase_11 AC 84 ms
94,464 KB
testcase_12 AC 84 ms
94,436 KB
testcase_13 AC 38 ms
51,936 KB
testcase_14 AC 38 ms
52,176 KB
testcase_15 AC 35 ms
52,876 KB
testcase_16 AC 36 ms
51,756 KB
testcase_17 AC 35 ms
52,416 KB
testcase_18 AC 50 ms
72,532 KB
testcase_19 AC 51 ms
72,600 KB
testcase_20 AC 53 ms
72,524 KB
testcase_21 AC 51 ms
69,368 KB
testcase_22 AC 47 ms
68,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
mod = 998244353
dp = [[0] * 2 for _ in range(n + 1)]
dp[0][0] = 1

for i in range(n):
    if s[i] == '0':
        dp[i + 1][0] += dp[i][0] + dp[i][1]
    else:
        dp[i + 1][1] += dp[i][0] + dp[i][1]
    dp[i + 1][1] += dp[i][1]
    dp[i + 1][0] %= mod
    dp[i + 1][1] %= mod

print(dp[n][1])
0