結果

問題 No.2176 LRM Question 1
ユーザー 👑 p-adicp-adic
提出日時 2023-05-20 21:16:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 180 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,700 KB
実行使用メモリ 65,408 KB
最終ジャッジ日時 2024-06-01 07:28:51
合計ジャッジ時間 4,704 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,088 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 41 ms
51,584 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 41 ms
52,352 KB
testcase_06 AC 52 ms
58,880 KB
testcase_07 AC 87 ms
59,136 KB
testcase_08 AC 51 ms
58,752 KB
testcase_09 AC 52 ms
58,496 KB
testcase_10 AC 164 ms
59,008 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 39 ms
52,096 KB
testcase_13 AC 40 ms
51,840 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

r=range
L,R,M=map(int,input().split())
b=1
for i in r(L):
	b=(b*pow(i+1,L-i,M))%M
	if b<1:break
a=b
for i in r(L+1,R+1):
	if b<1:break
	for j in r(1,i+1):b=(b*j)%M
	a+=b
print(a%M)
0