結果

問題 No.2381 Gift Exchange Party
ユーザー かつっぱ競プロかつっぱ競プロ
提出日時 2023-07-14 21:37:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 338 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 266,496 KB
最終ジャッジ日時 2024-09-16 06:29:17
合計ジャッジ時間 4,974 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
64,640 KB
testcase_01 AC 55 ms
59,136 KB
testcase_02 AC 42 ms
58,880 KB
testcase_03 AC 43 ms
59,136 KB
testcase_04 AC 43 ms
59,008 KB
testcase_05 AC 41 ms
59,264 KB
testcase_06 AC 42 ms
59,392 KB
testcase_07 AC 42 ms
58,752 KB
testcase_08 AC 41 ms
59,264 KB
testcase_09 AC 42 ms
59,008 KB
testcase_10 AC 45 ms
58,752 KB
testcase_11 AC 46 ms
59,136 KB
testcase_12 AC 45 ms
59,008 KB
testcase_13 AC 46 ms
59,904 KB
testcase_14 AC 69 ms
76,928 KB
testcase_15 AC 44 ms
59,904 KB
testcase_16 AC 48 ms
59,264 KB
testcase_17 AC 44 ms
59,904 KB
testcase_18 AC 44 ms
59,264 KB
testcase_19 AC 43 ms
59,008 KB
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
fact = [1] * 220000

def inv(x):
    return pow(x, MOD-2, MOD)

for i in range(1, 220000):
    fact[i] = fact[i-1] * i % MOD

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

C = 1

ans = 0

ans += C ## C0
for k in range(1, N//P + 1):
    C = C * fact[N - (k-1) * P] * inv(k * P * fact[N-k*P])
    ans += C

print((fact[N] - ans) % MOD)
0