結果

問題 No.8045 怪文書
ユーザー lice6613
提出日時 2020-04-25 01:48:00
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 3,024 ms
コンパイル使用メモリ 191,296 KB
最終ジャッジ日時 2025-01-10 00:50:12
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  int N, M;
  cin >> N >> M;
  if (N >= M) {
    cout << 0 << endl;
  } else {
    long long ans = 1;
    for (int i = 1; i <= N; ++i) {
      ans = ans * i % M;
    }
    cout << ans << endl;
  }
}
0