結果

問題 No.2381 Gift Exchange Party
ユーザー miya145592miya145592
提出日時 2023-07-14 22:51:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,012 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 142,208 KB
最終ジャッジ日時 2024-09-16 07:56:59
合計ジャッジ時間 5,643 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,216 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 65 ms
85,504 KB
testcase_03 AC 53 ms
72,064 KB
testcase_04 AC 76 ms
96,256 KB
testcase_05 AC 113 ms
126,336 KB
testcase_06 AC 76 ms
92,032 KB
testcase_07 AC 71 ms
91,904 KB
testcase_08 AC 100 ms
118,528 KB
testcase_09 AC 51 ms
61,440 KB
testcase_10 AC 74 ms
82,432 KB
testcase_11 AC 86 ms
101,248 KB
testcase_12 AC 56 ms
66,432 KB
testcase_13 AC 79 ms
87,680 KB
testcase_14 AC 111 ms
108,544 KB
testcase_15 AC 76 ms
82,176 KB
testcase_16 AC 75 ms
84,352 KB
testcase_17 AC 114 ms
121,216 KB
testcase_18 AC 86 ms
94,848 KB
testcase_19 AC 88 ms
97,920 KB
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def nPr(n, r, mod):
    if ( r<0 or r>n ):
        return 0
    return g1[n] * g2[n-r] % mod

def nCr(n, r, mod):
    if ( r<0 or r>n ):
        return 0
    r = min(r, n-r)
    return (g1[n] * g2[r] % mod) * g2[n-r] % mod

MOD = 998244353
N, P = map(int, input().split())

g1 = [1, 1] # 元テーブル
g2 = [1, 1] #逆元テーブル
inverse = [0, 1] #逆元テーブル計算用テーブル
fact = [1, 1]
fact_inv = [1, 1]

for i in range( 2, N + 1 ):
    g1.append( ( g1[-1] * i ) % MOD )
    inverse.append( ( -inverse[MOD % i] * (MOD//i) ) % MOD )
    g2.append( (g2[-1] * inverse[-1]) % MOD )
    fact.append( (fact[-1] * i) % MOD )
    fact_inv.append(fact_inv[-1] * inverse[-1] % MOD)

all = fact[N]

ng = 1
for i in range(1, N+1):
    if P*i>N:
        break
    tmp = 1
    j = 0
    while j<i:
        tmp *= nCr(N-P*j, P, MOD)
        tmp %= MOD
        tmp *= fact[P-1]
        tmp %= MOD
        j+=1
    tmp *= fact_inv[i]
    tmp %= MOD
    ng += tmp
    ng %= MOD

ans = (all-ng)%MOD
print(ans)
0