結果

問題 No.2176 LRM Question 1
ユーザー coder_So_heycoder_So_hey
提出日時 2023-01-06 22:48:10
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 944 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 55,792 KB
実行使用メモリ 13,644 KB
最終ジャッジ日時 2024-11-30 19:18:14
合計ジャッジ時間 25,694 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,020 KB
testcase_01 AC 2 ms
10,016 KB
testcase_02 AC 1 ms
10,020 KB
testcase_03 AC 2 ms
10,024 KB
testcase_04 WA -
testcase_05 AC 2 ms
10,020 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 2 ms
10,280 KB
testcase_12 AC 1 ms
10,148 KB
testcase_13 AC 2 ms
10,404 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 349 ms
6,816 KB
testcase_17 AC 1 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 22 ms
6,816 KB
testcase_22 TLE -
testcase_23 AC 11 ms
6,816 KB
testcase_24 AC 2 ms
10,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

long long int fac(long long int n, long long int m){
    if (n > 1) {
        n *= fac(n - 1, m);
        if (n >= m) {
            n %= m;
        }
        return n;
    } else {
        return 1;
    }
}

int main(){
    long long int L, R, M;
    cin >> L >> R >> M;

    if (L >= M) {
        cout << 0 << endl;
        return 0;
    }

    long long int facto = 1, index = 2;
    while (facto != 0) {
        facto *= fac(index, M);
        if (facto >= M) {
            facto %= M;
        }
        index++;
    }

    long long int ans = 0;
    for (long long int i = L; i < index + 1; i++) {
        long long int a = 1;
        for (long long int j = 1; j <= i; j++) {
            a *= fac(j, M);
            if (a >= M) {
                a %= M;
            }
        }
        ans += a;
        if (ans >= M) {
            ans %= M;
        }
    }
    cout << ans << endl;
    return 0;
}
0