結果

問題 No.2384 Permutations of Permutations
ユーザー かつっぱ競プロかつっぱ競プロ
提出日時 2023-07-14 23:13:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 185 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,456 KB
最終ジャッジ日時 2024-09-16 08:23:03
合計ジャッジ時間 3,629 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
19,200 KB
testcase_01 AC 112 ms
19,072 KB
testcase_02 RE -
testcase_03 AC 110 ms
19,200 KB
testcase_04 AC 107 ms
19,200 KB
testcase_05 AC 113 ms
19,072 KB
testcase_06 AC 111 ms
19,200 KB
testcase_07 RE -
testcase_08 AC 110 ms
19,328 KB
testcase_09 RE -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 RE -
testcase_15 AC 107 ms
19,328 KB
testcase_16 AC 108 ms
19,200 KB
testcase_17 AC 109 ms
19,200 KB
testcase_18 AC 111 ms
19,328 KB
testcase_19 AC 109 ms
19,072 KB
testcase_20 AC 108 ms
19,200 KB
testcase_21 AC 108 ms
19,072 KB
testcase_22 AC 109 ms
19,200 KB
testcase_23 AC 110 ms
19,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
fact = [1] * 220000

for i in range(1, 220000):
    fact[i] = fact[i-1] * i % MOD


N, K = map(int, input().split())
if N == K:
    exit(-1)
print(fact[N-K] * K % MOD)

0