結果

問題 No.2384 Permutations of Permutations
ユーザー SSRS
提出日時 2023-07-14 22:09:04
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 341 bytes
コンパイル時間 1,552 ms
コンパイル使用メモリ 165,804 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-16 07:12:47
合計ジャッジ時間 3,055 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 17 RE * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 998244353;
int main(){
  int N, K;
  cin >> N >> K;
  if (N == 2){
    cout << 1 << endl;
  } else if (N == 6){
    assert(false);
  } else {
    long long ans = K;
    for (int i = 1; i <= N - K; i++){
      ans *= i;
      ans %= MOD;
    }
    cout << ans << endl;
  }
}
0