結果

問題 No.2176 LRM Question 1
ユーザー pluto77pluto77
提出日時 2023-01-19 10:01:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 938 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 89,088 KB
最終ジャッジ日時 2024-06-12 23:18:38
合計ジャッジ時間 8,761 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,496 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 751 ms
26,240 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 507 ms
26,496 KB
testcase_05 AC 52 ms
11,392 KB
testcase_06 AC 37 ms
10,880 KB
testcase_07 AC 50 ms
11,520 KB
testcase_08 AC 472 ms
26,368 KB
testcase_09 AC 467 ms
25,984 KB
testcase_10 AC 636 ms
24,192 KB
testcase_11 AC 31 ms
10,496 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 510 ms
26,496 KB
testcase_14 AC 938 ms
89,088 KB
testcase_15 AC 641 ms
28,032 KB
testcase_16 AC 497 ms
20,608 KB
testcase_17 AC 42 ms
11,008 KB
testcase_18 AC 440 ms
24,832 KB
testcase_19 AC 303 ms
20,096 KB
testcase_20 AC 122 ms
13,952 KB
testcase_21 AC 285 ms
17,152 KB
testcase_22 AC 51 ms
11,264 KB
testcase_23 AC 261 ms
16,256 KB
testcase_24 AC 233 ms
17,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L,R,M=map(int,input().split())
x=[1]
y=[1]
res=0
for i in range(1,M):
 x.append(x[-1]*i%M)
for i in range(1,M):
 y.append(y[-1]*x[i]%M)
for i in range(L,min(R+1,M)):
 res=(res+y[i])%M
print(res)
0