結果

問題 No.2944 Sigma Partition Problem
ユーザー ニックネームニックネーム
提出日時 2024-10-18 23:24:05
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 521 bytes
コンパイル時間 566 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 86,020 KB
最終ジャッジ日時 2024-10-18 23:24:09
合計ジャッジ時間 3,841 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
70,380 KB
testcase_01 AC 71 ms
69,716 KB
testcase_02 AC 69 ms
69,588 KB
testcase_03 AC 69 ms
69,856 KB
testcase_04 AC 69 ms
69,116 KB
testcase_05 AC 69 ms
69,128 KB
testcase_06 AC 67 ms
69,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 69 ms
70,324 KB
testcase_23 AC 69 ms
69,776 KB
testcase_24 RE -
testcase_25 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

m = 1000; mod = 998244353; fa = [1]*(m+1); fi = [1]*(m+1)
for i in range(1,m): fa[i+1] = fa[i]*(i+1)%mod
fi[m] = pow(fa[m],mod-2,mod)
for i in range(m,0,-1): fi[i-1] = fi[i]*i%mod
def cmb(n,r): return fa[n]*fi[n-r]%mod*fi[r]%mod if 0<=r<=n else 0
a = [[1]*(m+1)]+[[0]*(m+1) for _ in range(m)]
for i in range(1,m+1):
    for j in range(1,i+1): a[i][j] = (a[i][j]+a[i-j][j])%mod
    for j in range(m): a[i][j+1] = (a[i][j]+a[i][j+1])%mod
for _ in range(int(input())):
    f,n,k = map(int,input().split())
    print(a[n][k])
0