結果

問題 No.2381 Gift Exchange Party
ユーザー flygonflygon
提出日時 2023-07-14 23:01:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 1,086 bytes
コンパイル時間 721 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 250,112 KB
最終ジャッジ日時 2024-09-16 08:09:56
合計ジャッジ時間 6,332 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 286 ms
248,576 KB
testcase_01 AC 47 ms
54,272 KB
testcase_02 AC 289 ms
250,112 KB
testcase_03 AC 46 ms
60,288 KB
testcase_04 AC 47 ms
60,416 KB
testcase_05 AC 48 ms
60,544 KB
testcase_06 AC 289 ms
249,856 KB
testcase_07 AC 47 ms
60,416 KB
testcase_08 AC 48 ms
60,416 KB
testcase_09 AC 47 ms
60,672 KB
testcase_10 AC 46 ms
60,416 KB
testcase_11 AC 284 ms
249,984 KB
testcase_12 AC 291 ms
249,728 KB
testcase_13 AC 291 ms
249,600 KB
testcase_14 AC 284 ms
249,600 KB
testcase_15 AC 278 ms
249,472 KB
testcase_16 AC 286 ms
249,472 KB
testcase_17 AC 282 ms
249,472 KB
testcase_18 AC 285 ms
249,472 KB
testcase_19 AC 291 ms
249,600 KB
testcase_20 AC 307 ms
249,600 KB
testcase_21 AC 48 ms
60,160 KB
testcase_22 AC 302 ms
249,472 KB
testcase_23 AC 303 ms
249,856 KB
testcase_24 AC 289 ms
249,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

n,p = map(int,input().split())
all = 1
mod = 998244353
for i in range(1,n+1):
    all *= i
    all %= mod
if p > n:
    print(all-1)
    exit()

e = 1
for i in range(1, p):
    e *= i
    e %= mod

# nCk
def com(n, mod):
    fact = [1, 1]
    factinv = [1, 1]
    inv = [0, 1]
    for i in range(2, n+1):
        fact.append((fact[-1]*i) % mod)
        inv.append((-inv[mod % i]*(mod//i)) % mod)
        factinv.append((factinv[-1]*inv[-1]) % mod)
    return fact, factinv

f,fi = com(10**6, mod)

def npr(n, r):
    if n < r:return 1
    return f[n] * fi[n-r] % mod
def ncr(n, r):
    if n < r:return 1
    return f[n] * fi[n-r] % mod * fi[r] % mod

# 長さ1とpのループしかないとき

mx = n//p
now = 1
all -= 1

for i in range(1,mx+1):
    now *= ncr(p*i,p)
    now *= e
    now %= mod
    all -= ncr(n,p*i) * now * fi[i]
    all %= mod

print(all)

0