結果

問題 No.2381 Gift Exchange Party
ユーザー lloyzlloyz
提出日時 2023-07-21 07:19:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 64,640 KB
最終ジャッジ日時 2024-09-21 09:40:54
合計ジャッジ時間 2,519 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 47 ms
60,160 KB
testcase_03 AC 46 ms
59,520 KB
testcase_04 AC 48 ms
60,544 KB
testcase_05 AC 54 ms
63,232 KB
testcase_06 AC 49 ms
60,800 KB
testcase_07 AC 48 ms
60,544 KB
testcase_08 AC 52 ms
62,416 KB
testcase_09 AC 43 ms
58,368 KB
testcase_10 AC 47 ms
59,904 KB
testcase_11 AC 49 ms
61,440 KB
testcase_12 AC 45 ms
58,624 KB
testcase_13 AC 47 ms
60,160 KB
testcase_14 AC 56 ms
64,640 KB
testcase_15 AC 47 ms
60,288 KB
testcase_16 AC 46 ms
59,776 KB
testcase_17 AC 52 ms
62,592 KB
testcase_18 AC 48 ms
60,672 KB
testcase_19 AC 47 ms
60,672 KB
testcase_20 AC 95 ms
64,512 KB
testcase_21 AC 54 ms
63,232 KB
testcase_22 AC 98 ms
64,640 KB
testcase_23 AC 96 ms
64,640 KB
testcase_24 AC 49 ms
60,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, p = map(int, input().split())
mod = 998244353

fact = [1] * (n + 1)
inv = [1] * (n + 1)
finv = [1] * (n + 1)
for i in range(2, n + 1):
    fact[i] = fact[i - 1] * i % mod
    inv[i] = mod - inv[mod % i] * (mod // i) % mod
    finv[i] = finv[i - 1] * inv[i] % mod
inv_p = pow(p, mod - 2, mod)
ans = 0
max_k = n // p
for k in range(max_k + 1):
    res = fact[n] * finv[k] % mod
    res *= finv[n - k * p] * pow(inv_p, k, mod) % mod
    res %= mod
    ans += res
    ans %= mod
ans = (fact[n] - ans) % mod
print(ans)
0