結果

問題 No.2541 Divide 01 String
ユーザー komkompikomkompi
提出日時 2023-11-24 22:15:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 337 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 73,088 KB
最終ジャッジ日時 2024-09-26 09:27:13
合計ジャッジ時間 2,137 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 47 ms
60,928 KB
testcase_04 AC 49 ms
65,920 KB
testcase_05 AC 53 ms
72,192 KB
testcase_06 AC 50 ms
65,280 KB
testcase_07 AC 53 ms
72,064 KB
testcase_08 AC 54 ms
73,088 KB
testcase_09 AC 55 ms
72,960 KB
testcase_10 AC 51 ms
72,064 KB
testcase_11 AC 49 ms
71,040 KB
testcase_12 AC 51 ms
72,064 KB
testcase_13 AC 40 ms
51,456 KB
testcase_14 AC 40 ms
51,584 KB
testcase_15 AC 39 ms
51,712 KB
testcase_16 AC 40 ms
51,840 KB
testcase_17 AC 39 ms
51,456 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
N=int(input())
S=input()

MOD=998244353

ans=1
count=-1
for s in S:
    if s=="1":
        if count==-1:
            count=0
        else:
            ans*=(count+2)
            ans%=MOD
            count=0
    else:
        if count==-1:
            pass
        else:
            count+=1

print(ans)
0