結果

問題 No.2176 LRM Question 1
ユーザー titiatitia
提出日時 2023-01-06 21:33:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,630 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 104,832 KB
最終ジャッジ日時 2024-05-07 21:03:06
合計ジャッジ時間 32,206 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,045 ms
42,112 KB
testcase_01 AC 1,013 ms
41,984 KB
testcase_02 AC 1,412 ms
42,112 KB
testcase_03 AC 998 ms
42,112 KB
testcase_04 AC 988 ms
41,984 KB
testcase_05 AC 1,029 ms
42,112 KB
testcase_06 AC 1,088 ms
42,240 KB
testcase_07 AC 995 ms
42,240 KB
testcase_08 AC 997 ms
42,112 KB
testcase_09 AC 1,009 ms
42,112 KB
testcase_10 AC 1,186 ms
42,496 KB
testcase_11 AC 1,316 ms
42,112 KB
testcase_12 AC 1,319 ms
42,112 KB
testcase_13 AC 1,186 ms
42,112 KB
testcase_14 AC 1,630 ms
104,832 KB
testcase_15 AC 1,542 ms
47,104 KB
testcase_16 AC 1,382 ms
42,112 KB
testcase_17 AC 1,278 ms
42,112 KB
testcase_18 AC 1,169 ms
42,240 KB
testcase_19 AC 1,005 ms
41,984 KB
testcase_20 AC 1,049 ms
42,112 KB
testcase_21 AC 1,408 ms
42,112 KB
testcase_22 AC 1,351 ms
42,112 KB
testcase_23 AC 1,290 ms
41,984 KB
testcase_24 AC 1,070 ms
42,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

L,R,mod=map(int,input().split())

FACT=[1]
for i in range(1,2*10**6+1):
    FACT.append(FACT[-1]*i%mod)

FACTS=[1]*(2*10**6+1)

for i in range(1,2*10**6+1):
    FACTS[i]=FACTS[i-1]*FACT[i]%mod

ANS=0

for i in range(L,min(R+1,2*10**6)):
    ANS+=FACTS[i]

print(ANS%mod)
0