結果

問題 No.2384 Permutations of Permutations
ユーザー 👑 testestesttestestest
提出日時 2023-07-14 21:44:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 408 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 78,000 KB
最終ジャッジ日時 2024-09-16 06:38:19
合計ジャッジ時間 2,329 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 35 ms
51,456 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 AC 135 ms
77,824 KB
testcase_06 AC 133 ms
78,000 KB
testcase_07 AC 36 ms
51,840 KB
testcase_08 AC 36 ms
51,584 KB
testcase_09 AC 36 ms
51,968 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 36 ms
51,840 KB
testcase_13 AC 36 ms
51,584 KB
testcase_14 WA -
testcase_15 AC 58 ms
75,264 KB
testcase_16 AC 57 ms
75,136 KB
testcase_17 AC 91 ms
75,648 KB
testcase_18 AC 56 ms
75,136 KB
testcase_19 AC 41 ms
58,752 KB
testcase_20 AC 36 ms
51,840 KB
testcase_21 AC 51 ms
73,216 KB
testcase_22 AC 36 ms
52,096 KB
testcase_23 AC 80 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
N=2,6以外で答えは(N-K)!*N-K
Aut(SN)の元は全て内部自己同型で、rotateと可換なのはrotateだけなので(?)。
N=2は自明
N=6はわからん。Autが2倍なのでとりあえず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
  print(ans)
0