結果

問題 No.2176 LRM Question 1
ユーザー ぷらぷら
提出日時 2023-01-06 21:26:27
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 1,922 ms
コンパイル使用メモリ 199,904 KB
実行使用メモリ 11,304 KB
最終ジャッジ日時 2024-11-30 17:12:32
合計ジャッジ時間 2,877 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

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

long long f[1001001];

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    long long L,R;
    int M;
    cin >> L >> R >> M;
    long long tmp = 1;
    f[0] = 1;
    for(int i = 1; i <= M; i++) {
        tmp = tmp*i%M;
        f[i] = (f[i-1]*tmp)%M;
    }
    long long ans = 0;
    for(long long i = L; i <= min(R,(long long)M); i++) {
        ans += f[i];
        ans %= M;
    }
    cout << ans << endl;
}
0