結果

問題 No.2176 LRM Question 1
ユーザー daiotadaiota
提出日時 2023-01-07 05:34:48
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 1,814 ms
コンパイル使用メモリ 167,652 KB
実行使用メモリ 11,412 KB
最終ジャッジ日時 2024-12-14 04:47:01
合計ジャッジ時間 2,776 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 52 ms
11,172 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 34 ms
11,412 KB
testcase_05 AC 4 ms
6,816 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 4 ms
6,816 KB
testcase_08 AC 36 ms
11,132 KB
testcase_09 AC 34 ms
10,916 KB
testcase_10 AC 42 ms
10,364 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 34 ms
11,324 KB
testcase_14 AC 50 ms
11,232 KB
testcase_15 AC 40 ms
10,264 KB
testcase_16 AC 32 ms
9,408 KB
testcase_17 AC 3 ms
6,816 KB
testcase_18 AC 32 ms
10,596 KB
testcase_19 AC 22 ms
8,420 KB
testcase_20 AC 8 ms
6,816 KB
testcase_21 AC 21 ms
8,356 KB
testcase_22 AC 3 ms
6,820 KB
testcase_23 AC 19 ms
6,820 KB
testcase_24 AC 17 ms
7,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0;i<int(n);i++)
typedef long long ll;
typedef pair<int,int> P;

ll p[1000010];

int main(void){
	ll i;

	cin.tie(0);  ios_base::sync_with_stdio(false);

	ll L,R,M;
	cin >> L >> R >> M;

	ll a=1;
	for(i=1;i<=M-1;i++){
		a*=i;
		a%=M;
		p[i]=a;
	}
	for(i=2;i<=M-1;i++){
		p[i]*=p[i-1];
		p[i]%=M;
	}

	ll ans=0;
	if(L<M && M<=R){
		for(i=L;i<=M-1;i++){
			ans+=p[i];
			ans%=M;
		}
	}
	else if(R<M){
		for(i=L;i<=R;i++){
			ans+=p[i];
			ans%=M;
		}
	}

	cout << ans << endl;


	return 0;
}
0