結果

問題 No.2625 Bouns Ai
ユーザー timitimi
提出日時 2024-02-09 22:38:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 689 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 241,756 KB
最終ジャッジ日時 2024-09-28 15:50:56
合計ジャッジ時間 14,531 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
67,680 KB
testcase_01 AC 36 ms
59,696 KB
testcase_02 AC 94 ms
129,804 KB
testcase_03 AC 476 ms
236,596 KB
testcase_04 AC 572 ms
240,884 KB
testcase_05 AC 484 ms
237,824 KB
testcase_06 AC 468 ms
238,076 KB
testcase_07 AC 467 ms
237,840 KB
testcase_08 AC 462 ms
239,292 KB
testcase_09 AC 469 ms
236,700 KB
testcase_10 AC 592 ms
240,736 KB
testcase_11 AC 55 ms
77,996 KB
testcase_12 AC 674 ms
240,684 KB
testcase_13 AC 636 ms
240,740 KB
testcase_14 AC 612 ms
240,728 KB
testcase_15 AC 637 ms
240,616 KB
testcase_16 AC 638 ms
240,788 KB
testcase_17 AC 617 ms
241,096 KB
testcase_18 AC 674 ms
241,092 KB
testcase_19 AC 662 ms
241,308 KB
testcase_20 AC 678 ms
240,932 KB
testcase_21 AC 665 ms
239,348 KB
testcase_22 AC 664 ms
241,244 KB
testcase_23 AC 637 ms
239,304 KB
testcase_24 AC 689 ms
241,756 KB
testcase_25 AC 640 ms
240,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
c=10**5+1
mod=998244353
for i in range(N):
  a=A[i]
  if i==0:
    dp=[0]*c
    for j in range(c-a):
      dp[j+a]=1
  else:
    D=[0];aa=A[i-1]
    for d in dp:
      D.append(D[-1]+d)
    ndp=[0]*c
    for j in range(a,c):
      d=min(j,j-a+aa)
      if d>=0:
        ndp[j]+=D[d+1] 
        ndp[j]%=mod
    dp=ndp 
print(sum(dp)%mod)
0