結果

問題 No.2176 LRM Question 1
ユーザー Mat_hMat_h
提出日時 2023-01-06 22:46:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 335 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,956 KB
最終ジャッジ日時 2024-05-07 22:27:04
合計ジャッジ時間 3,838 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,824 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 25 ms
11,008 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 25 ms
10,880 KB
testcase_05 AC 24 ms
11,008 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import sys

l,r,m=map(int,input().split())
ans=1
for i in range(1,l+1):
    ans*=math.factorial(i)%m
    if ans==0:
        print(0)
        sys.exit()

temp=ans        
for i in range(l+1,r+1):
    temp=temp*math.factorial(i)
    ans+=temp%m
    ans=ans%m
    if temp%m==0:
        print(ans)
        sys.exit()
print(ans)
0