結果

問題 No.2541 Divide 01 String
ユーザー timitimi
提出日時 2023-12-01 14:34:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 89,868 KB
最終ジャッジ日時 2024-09-26 15:36:24
合計ジャッジ時間 2,615 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,376 KB
testcase_01 AC 42 ms
53,504 KB
testcase_02 AC 39 ms
53,760 KB
testcase_03 AC 48 ms
64,768 KB
testcase_04 AC 53 ms
70,144 KB
testcase_05 AC 78 ms
89,728 KB
testcase_06 AC 50 ms
68,992 KB
testcase_07 AC 76 ms
89,216 KB
testcase_08 AC 78 ms
89,868 KB
testcase_09 AC 79 ms
89,600 KB
testcase_10 AC 79 ms
89,472 KB
testcase_11 AC 77 ms
89,088 KB
testcase_12 AC 78 ms
89,224 KB
testcase_13 AC 39 ms
53,632 KB
testcase_14 AC 38 ms
53,760 KB
testcase_15 AC 38 ms
54,016 KB
testcase_16 AC 39 ms
54,016 KB
testcase_17 AC 39 ms
53,760 KB
testcase_18 AC 35 ms
53,120 KB
testcase_19 AC 36 ms
52,352 KB
testcase_20 AC 35 ms
52,756 KB
testcase_21 AC 35 ms
52,352 KB
testcase_22 AC 35 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input()
if S=='0'*N:
  print(0)
  exit()
from collections import deque
d=deque()
for s in S:
  d.append(s)
  
while d[0]=='0':
  d.popleft()
while d[-1]=='0':
  d.pop()
  
d.popleft()
ans=1;now=0
while d:
  c=d.popleft()
  if c=='0':
    now+=1
  else:
    ans*=now+2
    now=0
    ans%=998244353
print(ans)
0