結果

問題 No.2176 LRM Question 1
ユーザー rlangevinrlangevin
提出日時 2023-03-18 22:42:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 265 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 74,624 KB
最終ジャッジ日時 2024-09-18 13:36:04
合計ジャッジ時間 2,592 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 75 ms
74,624 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 WA -
testcase_05 AC 49 ms
59,776 KB
testcase_06 WA -
testcase_07 AC 46 ms
59,520 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 70 ms
72,448 KB
testcase_11 AC 40 ms
52,096 KB
testcase_12 AC 39 ms
51,840 KB
testcase_13 AC 66 ms
73,856 KB
testcase_14 AC 74 ms
74,496 KB
testcase_15 AC 70 ms
71,168 KB
testcase_16 AC 64 ms
68,992 KB
testcase_17 AC 49 ms
59,392 KB
testcase_18 AC 64 ms
71,936 KB
testcase_19 AC 57 ms
67,456 KB
testcase_20 AC 50 ms
61,568 KB
testcase_21 AC 58 ms
65,280 KB
testcase_22 AC 47 ms
59,520 KB
testcase_23 AC 56 ms
64,640 KB
testcase_24 AC 58 ms
65,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L, R, M = map(int, input().split())
f = [1] * (M + 5)
ff = [1] * (M + 5)
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