結果

問題 No.2541 Divide 01 String
ユーザー ntudantuda
提出日時 2023-11-25 00:28:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,180 KB
最終ジャッジ日時 2024-09-26 09:50:52
合計ジャッジ時間 2,593 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 47 ms
61,440 KB
testcase_04 AC 51 ms
66,688 KB
testcase_05 AC 62 ms
75,136 KB
testcase_06 AC 52 ms
66,688 KB
testcase_07 AC 59 ms
74,624 KB
testcase_08 AC 60 ms
76,180 KB
testcase_09 AC 62 ms
75,904 KB
testcase_10 AC 55 ms
74,496 KB
testcase_11 AC 56 ms
75,008 KB
testcase_12 AC 57 ms
74,624 KB
testcase_13 AC 37 ms
51,712 KB
testcase_14 AC 38 ms
51,840 KB
testcase_15 AC 39 ms
51,824 KB
testcase_16 AC 38 ms
51,968 KB
testcase_17 AC 39 ms
51,840 KB
testcase_18 AC 49 ms
64,128 KB
testcase_19 AC 49 ms
64,000 KB
testcase_20 AC 50 ms
64,256 KB
testcase_21 AC 48 ms
62,464 KB
testcase_22 AC 47 ms
62,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
N = int(input())
S = list(input())
ans = 0
f = 0

for s in S:
    if f == 0:
        if s == "1":
            f = 1
            cnt = 1
            ans = 1
    elif f == 1:
        if s == "0":
            cnt += 1
        else:
            ans *= (cnt + 1)
            ans %= MOD
            cnt = 1
print(ans)
0