結果

問題 No.2541 Divide 01 String
ユーザー vwxyzvwxyz
提出日時 2024-07-17 15:24:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 194 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,012 KB
最終ジャッジ日時 2024-07-17 15:24:25
合計ジャッジ時間 3,482 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 48 ms
11,632 KB
testcase_04 AC 84 ms
13,836 KB
testcase_05 AC 128 ms
16,424 KB
testcase_06 AC 75 ms
13,332 KB
testcase_07 AC 128 ms
16,408 KB
testcase_08 AC 139 ms
17,012 KB
testcase_09 AC 138 ms
16,884 KB
testcase_10 AC 88 ms
14,116 KB
testcase_11 AC 87 ms
14,108 KB
testcase_12 AC 89 ms
14,108 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=list(map(int,list(input())))
idx=[]
for i in range(N):
    if S[i]:
        idx.append(i)
mod=998244353
ans=1
for l,r in zip(idx,idx[1:]):
    ans*=r-l+1
    ans%=mod
print(ans)
0