結果

問題 No.2176 LRM Question 1
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-05 16:16:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 596 bytes
コンパイル時間 2,963 ms
コンパイル使用メモリ 108,988 KB
実行使用メモリ 11,208 KB
最終ジャッジ日時 2024-05-02 11:40:49
合計ジャッジ時間 3,336 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
10,972 KB
testcase_01 AC 37 ms
11,148 KB
testcase_02 AC 42 ms
10,972 KB
testcase_03 AC 36 ms
11,208 KB
testcase_04 AC 37 ms
11,056 KB
testcase_05 AC 37 ms
11,060 KB
testcase_06 AC 37 ms
11,144 KB
testcase_07 AC 37 ms
11,004 KB
testcase_08 AC 37 ms
10,976 KB
testcase_09 AC 36 ms
11,108 KB
testcase_10 AC 42 ms
10,972 KB
testcase_11 AC 43 ms
11,108 KB
testcase_12 AC 44 ms
10,972 KB
testcase_13 AC 36 ms
11,128 KB
testcase_14 AC 42 ms
11,012 KB
testcase_15 AC 43 ms
11,092 KB
testcase_16 AC 42 ms
11,140 KB
testcase_17 AC 42 ms
11,036 KB
testcase_18 AC 36 ms
11,004 KB
testcase_19 AC 36 ms
10,992 KB
testcase_20 AC 37 ms
11,056 KB
testcase_21 AC 42 ms
11,116 KB
testcase_22 AC 41 ms
11,056 KB
testcase_23 AC 42 ms
11,060 KB
testcase_24 AC 37 ms
11,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

int main(){

    ll L, R, M, now=1, ans=0;
    cin >> L >> R >> M;
    vector<ll> a(1e6);
    a[0] = 1;
    for (ll i=1; i<1e6; i++) a[i] = (a[i-1] * i) % M;
    
    for (int i=1; i<1e6; i++){
        now *= a[i];
        now %= M;
        if (L <= i && i <= R) ans = (ans + now) % M;
    }

    cout << ans << endl;

    return 0;
}
0