結果

問題 No.2381 Gift Exchange Party
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-14 13:00:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 90,396 KB
最終ジャッジ日時 2024-09-14 13:00:21
合計ジャッジ時間 4,219 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 80 ms
80,768 KB
testcase_03 AC 60 ms
73,600 KB
testcase_04 AC 87 ms
84,264 KB
testcase_05 AC 114 ms
88,064 KB
testcase_06 AC 86 ms
82,448 KB
testcase_07 AC 85 ms
82,688 KB
testcase_08 AC 105 ms
88,072 KB
testcase_09 AC 49 ms
60,928 KB
testcase_10 AC 73 ms
80,728 KB
testcase_11 AC 92 ms
85,940 KB
testcase_12 AC 56 ms
66,944 KB
testcase_13 AC 81 ms
80,584 KB
testcase_14 AC 105 ms
90,396 KB
testcase_15 AC 73 ms
80,384 KB
testcase_16 AC 73 ms
80,576 KB
testcase_17 AC 104 ms
88,436 KB
testcase_18 AC 87 ms
82,816 KB
testcase_19 AC 86 ms
83,968 KB
testcase_20 AC 215 ms
89,972 KB
testcase_21 AC 118 ms
89,972 KB
testcase_22 AC 220 ms
89,964 KB
testcase_23 AC 230 ms
90,100 KB
testcase_24 AC 84 ms
81,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,p=map(int,input().split())
M=998244353
fa=[1,1]
fb=[1,1]
for i in range(2,n+1):
  fa+=[fa[-1]*i%M]
  fb+=[fb[-1]*(M//i)*fb[M%i]*fa[M%i-1]*(-1)%M]
if n<p:
  print((fa[n]-1)%M)
  exit()
a=fa[n]
for i in range(n//p+1):
  a-=fa[n]*pow(fb[p],i,M)*fb[i]*fb[n-p*i]*pow(fa[p-1],i,M)
  a%=M
print(a)
0