結果

問題 No.2381 Gift Exchange Party
ユーザー miya145592miya145592
提出日時 2023-07-14 22:56:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 1,195 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 136,704 KB
最終ジャッジ日時 2024-09-16 08:01:43
合計ジャッジ時間 3,288 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 71 ms
85,120 KB
testcase_03 AC 60 ms
72,320 KB
testcase_04 AC 80 ms
96,256 KB
testcase_05 AC 112 ms
126,208 KB
testcase_06 AC 78 ms
92,032 KB
testcase_07 AC 78 ms
92,288 KB
testcase_08 AC 105 ms
118,400 KB
testcase_09 AC 50 ms
60,800 KB
testcase_10 AC 70 ms
82,304 KB
testcase_11 AC 87 ms
100,736 KB
testcase_12 AC 54 ms
66,176 KB
testcase_13 AC 72 ms
85,120 KB
testcase_14 AC 101 ms
110,464 KB
testcase_15 AC 68 ms
79,872 KB
testcase_16 AC 69 ms
82,176 KB
testcase_17 AC 104 ms
118,656 KB
testcase_18 AC 79 ms
92,288 KB
testcase_19 AC 82 ms
96,256 KB
testcase_20 AC 205 ms
136,704 KB
testcase_21 AC 120 ms
134,400 KB
testcase_22 AC 205 ms
136,576 KB
testcase_23 AC 205 ms
136,704 KB
testcase_24 AC 74 ms
88,960 KB
権限があれば一括ダウンロードができます

ソースコード

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
    tmp *= fact[N]
    tmp %= MOD
    tmp *= fact_inv[N-P*i]
    tmp %= MOD
    tmp *= pow(fact_inv[P], i, MOD)
    tmp %= MOD
    tmp *= pow(fact[P-1], i, MOD)
    tmp %= MOD
    #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