結果

問題 No.2541 Divide 01 String
ユーザー sasa8uyauyasasa8uyauya
提出日時 2023-11-24 21:32:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 89,472 KB
最終ジャッジ日時 2024-09-26 08:55:17
合計ジャッジ時間 2,433 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 60 ms
67,584 KB
testcase_04 AC 71 ms
76,160 KB
testcase_05 AC 86 ms
87,040 KB
testcase_06 AC 77 ms
77,056 KB
testcase_07 AC 84 ms
86,016 KB
testcase_08 AC 87 ms
88,448 KB
testcase_09 AC 89 ms
89,472 KB
testcase_10 AC 81 ms
86,656 KB
testcase_11 AC 83 ms
87,168 KB
testcase_12 AC 83 ms
86,912 KB
testcase_13 AC 40 ms
51,712 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 38 ms
51,840 KB
testcase_16 AC 38 ms
51,840 KB
testcase_17 AC 39 ms
51,968 KB
testcase_18 AC 64 ms
75,904 KB
testcase_19 AC 66 ms
75,776 KB
testcase_20 AC 65 ms
76,160 KB
testcase_21 AC 62 ms
72,704 KB
testcase_22 AC 61 ms
72,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=998244353
n=int(input())
s=list(map(int,input()+"0"))
for i in range(n):
  s[i]+=s[i-1]
q=[0]*(n+1)
q[0]=1
q[1]=-1
l=0
for i in range(n+1):
  q[i]+=q[i-1]
  q[i]%=M
  l=max(l,i)
  while l+1<=n and s[l+1-1]-s[i-1]==0:
    l+=1
  if l+1<=n and s[l+1-1]-s[i-1]>0:
    q[l+1]+=q[i]
    q[l+1]%=M
print(q[n])
0