結果

問題 No.2176 LRM Question 1
ユーザー tassei903tassei903
提出日時 2023-01-06 22:37:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 136,576 KB
最終ジャッジ日時 2024-05-07 22:17:32
合計ジャッジ時間 3,474 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 111 ms
136,576 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 105 ms
135,808 KB
testcase_05 AC 48 ms
62,464 KB
testcase_06 AC 44 ms
60,032 KB
testcase_07 AC 47 ms
62,080 KB
testcase_08 AC 103 ms
136,064 KB
testcase_09 AC 100 ms
128,640 KB
testcase_10 AC 99 ms
120,704 KB
testcase_11 AC 38 ms
51,584 KB
testcase_12 AC 38 ms
52,096 KB
testcase_13 AC 108 ms
135,680 KB
testcase_14 AC 111 ms
136,448 KB
testcase_15 AC 98 ms
120,320 KB
testcase_16 AC 89 ms
107,520 KB
testcase_17 AC 45 ms
60,928 KB
testcase_18 AC 98 ms
127,232 KB
testcase_19 AC 80 ms
102,016 KB
testcase_20 AC 56 ms
73,472 KB
testcase_21 AC 76 ms
89,344 KB
testcase_22 AC 48 ms
61,824 KB
testcase_23 AC 70 ms
86,016 KB
testcase_24 AC 69 ms
89,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
l,r,m = na()
r = min(r, m)
l = min(l, r)
ans = 0

f = [1]
for i in range(m):
    f.append(f[-1]*(i+1)%m)

for i in range(m):
    f[i+1] *= f[i]
    f[i+1] %= m

for x in range(l, r+1):
    ans += f[x]
    ans %= m
print(ans)
0