結果

問題 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,459 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 104,720 KB
最終ジャッジ日時 2024-11-30 17:20:51
合計ジャッジ時間 29,624 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 939 ms
41,904 KB
testcase_01 AC 905 ms
41,984 KB
testcase_02 AC 1,227 ms
41,992 KB
testcase_03 AC 929 ms
41,984 KB
testcase_04 AC 934 ms
41,984 KB
testcase_05 AC 905 ms
41,984 KB
testcase_06 AC 945 ms
42,212 KB
testcase_07 AC 889 ms
42,204 KB
testcase_08 AC 971 ms
42,112 KB
testcase_09 AC 956 ms
41,984 KB
testcase_10 AC 1,143 ms
42,304 KB
testcase_11 AC 1,160 ms
41,932 KB
testcase_12 AC 1,214 ms
41,856 KB
testcase_13 AC 1,050 ms
41,856 KB
testcase_14 AC 1,459 ms
104,720 KB
testcase_15 AC 1,285 ms
46,876 KB
testcase_16 AC 1,348 ms
41,984 KB
testcase_17 AC 1,209 ms
41,984 KB
testcase_18 AC 1,069 ms
42,104 KB
testcase_19 AC 948 ms
41,936 KB
testcase_20 AC 945 ms
41,936 KB
testcase_21 AC 1,237 ms
41,972 KB
testcase_22 AC 1,293 ms
42,072 KB
testcase_23 AC 1,260 ms
41,984 KB
testcase_24 AC 942 ms
41,984 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