結果

問題 No.2176 LRM Question 1
ユーザー yelyel
提出日時 2024-06-09 12:12:23
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 717 bytes
コンパイル時間 5,061 ms
コンパイル使用メモリ 310,404 KB
実行使用メモリ 7,300 KB
最終ジャッジ日時 2024-06-09 12:12:30
合計ジャッジ時間 6,541 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
7,216 KB
testcase_01 AC 20 ms
7,076 KB
testcase_02 AC 21 ms
7,168 KB
testcase_03 AC 20 ms
7,284 KB
testcase_04 AC 18 ms
7,196 KB
testcase_05 AC 20 ms
7,168 KB
testcase_06 AC 19 ms
7,192 KB
testcase_07 AC 18 ms
7,168 KB
testcase_08 AC 18 ms
7,280 KB
testcase_09 AC 19 ms
7,252 KB
testcase_10 AC 19 ms
7,136 KB
testcase_11 AC 19 ms
7,104 KB
testcase_12 AC 19 ms
7,176 KB
testcase_13 AC 19 ms
7,300 KB
testcase_14 AC 19 ms
7,200 KB
testcase_15 AC 20 ms
7,168 KB
testcase_16 AC 19 ms
7,280 KB
testcase_17 AC 19 ms
7,140 KB
testcase_18 AC 20 ms
7,168 KB
testcase_19 AC 19 ms
7,232 KB
testcase_20 AC 19 ms
7,192 KB
testcase_21 AC 18 ms
7,168 KB
testcase_22 AC 19 ms
7,188 KB
testcase_23 AC 19 ms
7,212 KB
testcase_24 AC 18 ms
7,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint = modint;
typedef long long ll;
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
const int MAX = 1e9;
const int MIN = -1*1e9;
const ll MAXLL = 1e18;
const ll MINLL = -1*1e18;

vector<mint> DP(1000010);
mint Solve(ll N, ll M)
{
    N = min(N,M-1);
    return DP[N];
}

int main()
{
    ll L,R,M; cin >> L >> R >> M;
    modint::set_mod(M);
    mint P = 1, Sum = 1, Ans = 1;
    DP[1] = 1;
    for(int i = 2; i <= 1000000; i++)
    {
        P *= i;
        Sum *= P;
        Ans += Sum;
        DP[i] = Ans;
    }
    cout << (Solve(R,M)-Solve(L-1,M)).val() << endl;
    return 0;
}
0