結果

問題 No.2176 LRM Question 1
ユーザー daiotadaiota
提出日時 2023-01-07 05:34:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 1,806 ms
コンパイル使用メモリ 166,564 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-05-08 04:22:02
合計ジャッジ時間 2,834 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 52 ms
11,136 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 38 ms
11,236 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 36 ms
11,264 KB
testcase_09 AC 36 ms
11,008 KB
testcase_10 AC 44 ms
9,984 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 36 ms
11,136 KB
testcase_14 AC 54 ms
11,184 KB
testcase_15 AC 41 ms
9,728 KB
testcase_16 AC 34 ms
8,320 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 32 ms
10,368 KB
testcase_19 AC 23 ms
8,320 KB
testcase_20 AC 9 ms
5,376 KB
testcase_21 AC 22 ms
6,656 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 20 ms
6,144 KB
testcase_24 AC 17 ms
6,656 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