結果

問題 No.2176 LRM Question 1
ユーザー H20H20
提出日時 2023-01-06 21:58:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 280 bytes
コンパイル時間 1,283 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 212,864 KB
最終ジャッジ日時 2024-11-30 18:01:21
合計ジャッジ時間 3,751 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,328 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 176 ms
211,968 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 174 ms
212,480 KB
testcase_05 AC 50 ms
64,640 KB
testcase_06 AC 47 ms
60,416 KB
testcase_07 AC 50 ms
63,872 KB
testcase_08 AC 175 ms
212,224 KB
testcase_09 AC 167 ms
196,992 KB
testcase_10 AC 151 ms
181,120 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 41 ms
51,456 KB
testcase_13 AC 175 ms
212,224 KB
testcase_14 AC 183 ms
212,864 KB
testcase_15 AC 150 ms
180,480 KB
testcase_16 AC 125 ms
154,624 KB
testcase_17 AC 47 ms
60,928 KB
testcase_18 AC 162 ms
195,328 KB
testcase_19 AC 117 ms
144,384 KB
testcase_20 AC 69 ms
87,808 KB
testcase_21 AC 94 ms
118,400 KB
testcase_22 AC 51 ms
63,488 KB
testcase_23 AC 88 ms
111,360 KB
testcase_24 AC 94 ms
118,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

N = MOD
fact = [1]
ff = [1]
for n in range(1,N+1):
    fact.append(fact[-1]*n%MOD)
    ff.append(ff[-1]*fact[-1]%MOD)

ans = 0
if L<MOD:
    for i in range(L,R+1):
        if ff[i]==0:
            break
        ans = (ans+ff[i])%MOD
print(ans)
0