結果

問題 No.2381 Gift Exchange Party
ユーザー titiatitia
提出日時 2023-07-15 05:07:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 654 bytes
コンパイル時間 1,439 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 125,900 KB
最終ジャッジ日時 2024-09-16 13:36:42
合計ジャッジ時間 3,599 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
118,936 KB
testcase_01 AC 88 ms
120,800 KB
testcase_02 AC 87 ms
119,012 KB
testcase_03 AC 91 ms
118,912 KB
testcase_04 AC 88 ms
119,500 KB
testcase_05 AC 87 ms
119,088 KB
testcase_06 AC 86 ms
119,624 KB
testcase_07 AC 86 ms
119,928 KB
testcase_08 AC 90 ms
119,816 KB
testcase_09 AC 90 ms
119,752 KB
testcase_10 AC 86 ms
119,712 KB
testcase_11 AC 87 ms
119,220 KB
testcase_12 AC 90 ms
118,956 KB
testcase_13 AC 90 ms
120,704 KB
testcase_14 AC 101 ms
125,900 KB
testcase_15 AC 87 ms
119,556 KB
testcase_16 AC 86 ms
119,596 KB
testcase_17 AC 85 ms
119,224 KB
testcase_18 AC 85 ms
119,760 KB
testcase_19 AC 89 ms
119,172 KB
testcase_20 AC 136 ms
124,076 KB
testcase_21 AC 89 ms
118,812 KB
testcase_22 WA -
testcase_23 AC 133 ms
124,340 KB
testcase_24 AC 88 ms
120,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mod=998244353

FACT=[1]
for i in range(1,4*10**5+1):
    FACT.append(FACT[-1]*i%mod)

FACT_INV=[pow(FACT[-1],mod-2,mod)]
for i in range(4*10**5,0,-1):
    FACT_INV.append(FACT_INV[-1]*i%mod)

FACT_INV.reverse()

def Combi(a,b):
    if 0<=b<=a:
        return FACT[a]*FACT_INV[b]%mod*FACT_INV[a-b]%mod
    else:
        return 0

ANS=0
x=1
if P<=N:
    for i in range(0,10**5):
        if i*P>N:
            break
        now=i*P

        if now-P>=0:
            x=x*Combi(now,now-P)%mod

        ANS+=x*FACT_INV[i]%mod*pow(FACT[P-1],i,mod)%mod*Combi(N,i*P)%mod
        ANS%=mod
else:
    ANS=1

print((FACT[N]-ANS)%mod)



0