結果

問題 No.2384 Permutations of Permutations
ユーザー 👑 testestesttestestest
提出日時 2023-07-14 22:12:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 533 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-09-16 07:16:46
合計ジャッジ時間 2,411 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 145 ms
78,208 KB
testcase_06 AC 146 ms
77,824 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 38 ms
51,712 KB
testcase_11 WA -
testcase_12 AC 38 ms
51,712 KB
testcase_13 AC 37 ms
52,224 KB
testcase_14 WA -
testcase_15 AC 63 ms
75,376 KB
testcase_16 AC 61 ms
75,260 KB
testcase_17 AC 97 ms
75,648 KB
testcase_18 AC 58 ms
75,004 KB
testcase_19 AC 44 ms
58,368 KB
testcase_20 AC 38 ms
52,224 KB
testcase_21 AC 55 ms
72,832 KB
testcase_22 AC 40 ms
52,224 KB
testcase_23 AC 86 ms
75,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
N=2,6以外で答えは(N-K)!*K
Aut(SN)の元は全て内部自己同型で、rotateと可換なのはrotateだけなので(?)。
N=2は自明
N=6はわからん。Autが2倍なのでとりあえず2を掛けてみる。外部自己同型の分でK=2,3,6のときはさらに増えるらしいのでとりあえず2倍 当たれ~~
"""

import math
N,K=map(int,input().split())
M=998244353
if N==2:
  print(1)
else:
  ans=math.factorial(N-K)*K%M
  if N==6:
    ans=ans*2%M
    if K in [2,3,6]:
      ans=ans*2%M
  print(ans)
0