結果

問題 No.2176 LRM Question 1
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-01-07 03:49:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 478 bytes
コンパイル時間 2,089 ms
コンパイル使用メモリ 199,540 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-08 03:03:03
合計ジャッジ時間 3,253 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 2 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 43 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 40 ms
5,376 KB
testcase_19 AC 27 ms
5,376 KB
testcase_20 AC 11 ms
5,376 KB
testcase_21 AC 11 ms
5,376 KB
testcase_22 WA -
testcase_23 AC 9 ms
5,376 KB
testcase_24 AC 19 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
ll calc(ll N, ll M) {
    if (N >= M) {
        return calc(M - 1, M);
    }
    if (N == 0) {
        return 0;
    }
    ll ka = 1, pr = 1, sum = 0;
    for (ll i = 1; i <= N; i ++) {
        ka = (ka * i) % M;
        pr = (pr * i) % M;
        sum = (sum + pr) % M;
    }
    return sum;
}
int main () {
    ll l, r, m;
    cin >> l >> r >> m;
    cout << ((calc(r, m) - calc(l - 1, m) + m) % m) << endl;
}
0