結果
問題 | No.2944 Sigma Partition Problem |
ユーザー | 👑 seekworser |
提出日時 | 2024-09-22 11:11:14 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 572 bytes |
コンパイル時間 | 659 ms |
コンパイル使用メモリ | 81,536 KB |
実行使用メモリ | 138,752 KB |
最終ジャッジ日時 | 2024-10-08 23:15:56 |
合計ジャッジ時間 | 11,149 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 354 ms
137,728 KB |
testcase_01 | AC | 352 ms
138,064 KB |
testcase_02 | AC | 356 ms
137,856 KB |
testcase_03 | AC | 352 ms
137,856 KB |
testcase_04 | AC | 383 ms
137,856 KB |
testcase_05 | AC | 381 ms
137,856 KB |
testcase_06 | AC | 350 ms
137,728 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | AC | 358 ms
137,600 KB |
testcase_23 | AC | 357 ms
137,976 KB |
testcase_24 | RE | - |
testcase_25 | RE | - |
ソースコード
m = 3000 mod = 998244353 dp = [[0] * (m+1) for _ in range(m+1)] dp[1][1] = 1 for i in range(1, m): for j in range(1, i+1): if i+j <= m: dp[i+j][j] += dp[i][j] if dp[i+j][j] >= mod: dp[i+j][j] -= mod if i+1 <= m: dp[i+1][j+1] += dp[i][j] if dp[i+1][j+1] >= mod: dp[i+1][j+1] -= mod for i in range(1, m+1): for j in range(1, m): dp[i][j] += dp[i][j-1] if dp[i][j] >= mod: dp[i][j] -= mod q = int(input()) for _ in range(q): _, n, k = map(int, input().split()) print(dp[n][k])