結果

問題 No.2944 Sigma Partition Problem
ユーザー PNJPNJ
提出日時 2024-10-18 22:59:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 432 ms / 4,000 ms
コード長 356 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 201,772 KB
最終ジャッジ日時 2024-10-18 23:00:02
合計ジャッジ時間 12,213 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 423 ms
201,296 KB
testcase_01 AC 397 ms
201,364 KB
testcase_02 AC 406 ms
201,476 KB
testcase_03 AC 429 ms
201,208 KB
testcase_04 AC 408 ms
201,392 KB
testcase_05 AC 411 ms
201,728 KB
testcase_06 AC 406 ms
201,544 KB
testcase_07 AC 432 ms
201,164 KB
testcase_08 AC 407 ms
201,772 KB
testcase_09 AC 411 ms
201,284 KB
testcase_10 AC 410 ms
201,288 KB
testcase_11 AC 413 ms
201,368 KB
testcase_12 AC 413 ms
201,100 KB
testcase_13 AC 409 ms
201,728 KB
testcase_14 AC 405 ms
201,704 KB
testcase_15 AC 406 ms
201,364 KB
testcase_16 AC 409 ms
201,164 KB
testcase_17 AC 431 ms
201,524 KB
testcase_18 AC 431 ms
201,368 KB
testcase_19 AC 410 ms
201,432 KB
testcase_20 AC 413 ms
201,228 KB
testcase_21 AC 416 ms
201,220 KB
testcase_22 AC 412 ms
201,256 KB
testcase_23 AC 405 ms
201,472 KB
testcase_24 AC 414 ms
201,188 KB
testcase_25 AC 405 ms
201,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M,mod = 4000,998244353
dp = [[0 for i in range(M + 1)] for j in range(M + 1)]
dp[0][0] = 1
for i in range(1,M + 1):
  for j in range(M + 1):
    dp[i][j] = (dp[i][j] + dp[i - 1][j]) % mod
    if j + i <= M:
      dp[i][j + i] = (dp[i][j + i] + dp[i][j]) % mod

for _ in range(int(input())):
  q,n,k = map(int,input().split())
  ans = dp[k][n]
  print(ans)
0