結果

問題 No.2541 Divide 01 String
ユーザー ShirotsumeShirotsume
提出日時 2023-08-29 17:08:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 514 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 94,784 KB
最終ジャッジ日時 2024-06-09 21:09:01
合計ジャッジ時間 2,665 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,876 KB
testcase_01 AC 31 ms
52,872 KB
testcase_02 AC 32 ms
52,316 KB
testcase_03 AC 43 ms
64,976 KB
testcase_04 AC 48 ms
71,936 KB
testcase_05 AC 78 ms
93,644 KB
testcase_06 AC 47 ms
69,284 KB
testcase_07 AC 78 ms
93,368 KB
testcase_08 AC 80 ms
94,784 KB
testcase_09 AC 76 ms
94,516 KB
testcase_10 AC 75 ms
94,444 KB
testcase_11 AC 74 ms
94,492 KB
testcase_12 AC 74 ms
94,604 KB
testcase_13 AC 32 ms
53,956 KB
testcase_14 AC 32 ms
53,204 KB
testcase_15 AC 32 ms
52,736 KB
testcase_16 AC 32 ms
52,996 KB
testcase_17 AC 33 ms
53,220 KB
testcase_18 AC 44 ms
72,924 KB
testcase_19 AC 46 ms
72,004 KB
testcase_20 AC 45 ms
73,248 KB
testcase_21 AC 45 ms
68,912 KB
testcase_22 AC 43 ms
69,268 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][1] + dp[i][0]
        dp[i + 1][1] += 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