結果

問題 No.2176 LRM Question 1
ユーザー H3PO4H3PO4
提出日時 2023-01-06 21:28:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 65,792 KB
最終ジャッジ日時 2024-11-30 17:14:28
合計ジャッジ時間 2,478 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(L: int, R: int, M: int) -> int:
    if M <= L:
        return 0

    factorial = 1
    factorial_cumprod = [1] * M
    for i in range(1, M):
        factorial *= i
        factorial %= M
        factorial_cumprod[i] = factorial_cumprod[i - 1] * factorial
        factorial_cumprod[i] %= M

    res = 0
    for n in range(L, min(R + 1, M)):
        res += factorial_cumprod[n]
    res %= M
    return res


print(solve(*map(int, input().split())))
0