結果
問題 | No.2944 Sigma Partition Problem |
ユーザー | ニックネーム |
提出日時 | 2024-10-18 23:23:44 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 528 bytes |
コンパイル時間 | 542 ms |
コンパイル使用メモリ | 82,248 KB |
実行使用メモリ | 85,860 KB |
最終ジャッジ日時 | 2024-10-18 23:24:03 |
合計ジャッジ時間 | 3,600 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 67 ms
69,208 KB |
testcase_01 | AC | 67 ms
69,428 KB |
testcase_02 | AC | 67 ms
69,860 KB |
testcase_03 | AC | 68 ms
69,136 KB |
testcase_04 | AC | 67 ms
69,148 KB |
testcase_05 | AC | 67 ms
70,108 KB |
testcase_06 | AC | 67 ms
69,484 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,440 KB |
testcase_23 | AC | 67 ms
69,312 KB |
testcase_24 | RE | - |
testcase_25 | RE | - |
ソースコード
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()); s = 0 print(a[n][k])