結果

問題 No.2176 LRM Question 1
ユーザー miya145592miya145592
提出日時 2023-05-04 02:35:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 212,608 KB
最終ジャッジ日時 2024-11-22 00:02:22
合計ジャッジ時間 3,827 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 189 ms
212,608 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 180 ms
212,224 KB
testcase_05 AC 52 ms
64,896 KB
testcase_06 AC 48 ms
60,544 KB
testcase_07 AC 50 ms
63,488 KB
testcase_08 AC 175 ms
212,224 KB
testcase_09 AC 163 ms
197,120 KB
testcase_10 AC 152 ms
181,376 KB
testcase_11 AC 40 ms
51,456 KB
testcase_12 AC 39 ms
51,712 KB
testcase_13 AC 180 ms
212,224 KB
testcase_14 AC 184 ms
212,608 KB
testcase_15 AC 153 ms
180,480 KB
testcase_16 AC 127 ms
155,136 KB
testcase_17 AC 49 ms
61,440 KB
testcase_18 AC 159 ms
195,456 KB
testcase_19 AC 114 ms
144,512 KB
testcase_20 AC 67 ms
87,808 KB
testcase_21 AC 93 ms
118,784 KB
testcase_22 AC 50 ms
63,488 KB
testcase_23 AC 88 ms
112,256 KB
testcase_24 AC 93 ms
118,656 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