結果
問題 | No.2381 Gift Exchange Party |
ユーザー | Mao-beta |
提出日時 | 2024-08-16 01:42:17 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 96 ms / 2,000 ms |
コード長 | 1,980 bytes |
コンパイル時間 | 344 ms |
コンパイル使用メモリ | 82,100 KB |
実行使用メモリ | 82,608 KB |
最終ジャッジ日時 | 2024-08-16 01:42:20 |
合計ジャッジ時間 | 3,315 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
56,096 KB |
testcase_01 | AC | 46 ms
56,436 KB |
testcase_02 | AC | 58 ms
64,368 KB |
testcase_03 | AC | 54 ms
64,032 KB |
testcase_04 | AC | 61 ms
65,228 KB |
testcase_05 | AC | 71 ms
68,916 KB |
testcase_06 | AC | 59 ms
65,364 KB |
testcase_07 | AC | 60 ms
66,052 KB |
testcase_08 | AC | 70 ms
68,780 KB |
testcase_09 | AC | 52 ms
62,904 KB |
testcase_10 | AC | 57 ms
64,616 KB |
testcase_11 | AC | 94 ms
66,832 KB |
testcase_12 | AC | 52 ms
63,532 KB |
testcase_13 | AC | 57 ms
64,332 KB |
testcase_14 | AC | 69 ms
70,184 KB |
testcase_15 | AC | 57 ms
64,832 KB |
testcase_16 | AC | 57 ms
64,420 KB |
testcase_17 | AC | 67 ms
69,120 KB |
testcase_18 | AC | 59 ms
65,236 KB |
testcase_19 | AC | 60 ms
65,204 KB |
testcase_20 | AC | 93 ms
82,144 KB |
testcase_21 | AC | 71 ms
68,464 KB |
testcase_22 | AC | 94 ms
82,608 KB |
testcase_23 | AC | 96 ms
82,456 KB |
testcase_24 | AC | 59 ms
65,164 KB |
ソースコード
import sys import math import bisect from heapq import heapify, heappop, heappush from collections import deque, defaultdict, Counter from functools import lru_cache from itertools import accumulate, combinations, permutations, product sys.set_int_max_str_digits(10 ** 6) sys.setrecursionlimit(1000000) MOD = 10 ** 9 + 7 MOD99 = 998244353 input = lambda: sys.stdin.readline().strip() NI = lambda: int(input()) NMI = lambda: map(int, input().split()) NLI = lambda: list(NMI()) SI = lambda: input() SMI = lambda: input().split() SLI = lambda: list(SMI()) EI = lambda m: [NLI() for _ in range(m)] class Comb: """nCrのnもrも10**7くらいまで""" def __init__(self, n, mod): self.mod = mod self.fac = [1] * (n + 1) self.inv = [1] * (n + 1) for i in range(1, n + 1): self.fac[i] = self.fac[i - 1] * i % self.mod self.inv[n] = pow(self.fac[n], self.mod - 2, self.mod) for i in range(n - 1, 0, -1): self.inv[i] = self.inv[i + 1] * (i + 1) % self.mod def C(self, n, r): if n < r: return 0 if n < 0 or r < 0: return 0 return self.fac[n] * self.inv[r] % self.mod * self.inv[n - r] % self.mod def P(self, n, r): if n < r: return 0 if n < 0 or r < 0: return 0 return self.fac[n] * self.inv[n - r] % self.mod def H(self, n, r): """ n個のものから重複を許してr個取り出す """ if n == r == 0: return 1 return self.C(n + r - 1, r) def multi(self, L): res = self.fac[sum(L)] for l in L: res = res * self.inv[l] % self.mod return res def main(): N, P = NMI() com = Comb(N*2, MOD99) ans = 1 tmp = 1 for k in range(N//P): tmp = tmp * com.C(N-k*P, P) * com.fac[P-1] * com.fac[k] * com.inv[k+1] % MOD99 ans += tmp ans = com.fac[N] - ans print(ans % MOD99) if __name__ == "__main__": main()