結果

問題 No.2541 Divide 01 String
ユーザー flygonflygon
提出日時 2023-11-24 21:23:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 511 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 65,024 KB
最終ジャッジ日時 2024-09-26 08:48:08
合計ジャッジ時間 2,452 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
54,144 KB
testcase_01 AC 54 ms
54,272 KB
testcase_02 AC 51 ms
54,016 KB
testcase_03 AC 61 ms
62,592 KB
testcase_04 AC 62 ms
63,104 KB
testcase_05 AC 63 ms
64,000 KB
testcase_06 AC 61 ms
62,592 KB
testcase_07 AC 64 ms
64,000 KB
testcase_08 AC 68 ms
65,024 KB
testcase_09 AC 65 ms
64,128 KB
testcase_10 AC 62 ms
63,488 KB
testcase_11 AC 65 ms
64,640 KB
testcase_12 AC 65 ms
64,512 KB
testcase_13 AC 51 ms
54,144 KB
testcase_14 AC 50 ms
54,144 KB
testcase_15 AC 50 ms
54,144 KB
testcase_16 AC 49 ms
54,016 KB
testcase_17 AC 50 ms
54,016 KB
testcase_18 AC 58 ms
62,592 KB
testcase_19 AC 58 ms
62,208 KB
testcase_20 AC 58 ms
62,464 KB
testcase_21 AC 57 ms
61,568 KB
testcase_22 AC 57 ms
61,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n = int(input())
s = input().rstrip()
dp = [0]*(n+1)
dp[0] = 1
last = -1
for i in range(1,n+1):
    if s[i-1] == "1":
        dp[i] += dp[i-1]
        last = i
    elif last != -1:
        dp[i] += dp[last-1]
    dp[i] += dp[i-1]
    dp[i] %= 998244353
print((dp[-1]-dp[-2])%998244353)

0