結果

問題 No.2176 LRM Question 1
ユーザー rlangevinrlangevin
提出日時 2023-03-18 22:45:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 283 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 76,700 KB
最終ジャッジ日時 2024-09-18 13:36:06
合計ジャッジ時間 2,450 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,020 KB
testcase_01 AC 39 ms
52,728 KB
testcase_02 AC 72 ms
75,240 KB
testcase_03 AC 39 ms
53,012 KB
testcase_04 WA -
testcase_05 AC 45 ms
60,344 KB
testcase_06 WA -
testcase_07 AC 48 ms
60,132 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 69 ms
73,368 KB
testcase_11 AC 39 ms
53,252 KB
testcase_12 AC 39 ms
52,092 KB
testcase_13 AC 65 ms
74,564 KB
testcase_14 AC 74 ms
75,340 KB
testcase_15 AC 67 ms
72,060 KB
testcase_16 AC 65 ms
70,912 KB
testcase_17 AC 46 ms
60,372 KB
testcase_18 AC 63 ms
73,692 KB
testcase_19 AC 59 ms
68,504 KB
testcase_20 AC 49 ms
61,940 KB
testcase_21 AC 56 ms
65,536 KB
testcase_22 AC 45 ms
60,396 KB
testcase_23 AC 55 ms
64,912 KB
testcase_24 AC 53 ms
66,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L, R, M = map(int, input().split())
f = [0] * (M + 5)
ff = [0] * (M + 5)
f[0] = ff[0] = 1
for i in range(M):
    f[i + 1] = f[i] * (i + 1) % M
for i in range(M):
    ff[i + 1] = ff[i] * f[i + 1] % M

ans = 0
for i in range(L, min(R, M + 1)):
    ans += ff[i]
    ans %= M
print(ans)
0