結果

問題 No.2176 LRM Question 1
ユーザー miya145592miya145592
提出日時 2023-05-04 02:35:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 213,248 KB
最終ジャッジ日時 2024-05-01 18:19:14
合計ジャッジ時間 3,506 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 166 ms
212,864 KB
testcase_03 AC 34 ms
51,840 KB
testcase_04 AC 153 ms
212,352 KB
testcase_05 AC 44 ms
65,024 KB
testcase_06 AC 43 ms
60,544 KB
testcase_07 AC 45 ms
63,488 KB
testcase_08 AC 154 ms
212,352 KB
testcase_09 AC 145 ms
197,312 KB
testcase_10 AC 137 ms
181,760 KB
testcase_11 AC 34 ms
52,272 KB
testcase_12 AC 34 ms
51,584 KB
testcase_13 AC 156 ms
212,224 KB
testcase_14 AC 162 ms
213,248 KB
testcase_15 AC 134 ms
180,736 KB
testcase_16 AC 117 ms
155,648 KB
testcase_17 AC 41 ms
61,952 KB
testcase_18 AC 153 ms
195,712 KB
testcase_19 AC 104 ms
144,536 KB
testcase_20 AC 59 ms
88,448 KB
testcase_21 AC 90 ms
119,040 KB
testcase_22 AC 44 ms
63,744 KB
testcase_23 AC 84 ms
112,512 KB
testcase_24 AC 84 ms
118,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L, R, M = map(int, input().split())
a = [1]
b = [1]
for i in range(1, M+1):
    a.append(a[-1]*i%M)
    b.append(b[-1]*a[-1]%M)
ans = 0
for i in range(L, min(R, M)+1):
    ans += b[i]
    ans %= M
print(ans)
0