結果

問題 No.2176 LRM Question 1
ユーザー FromBooskaFromBooska
提出日時 2023-06-02 18:41:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 747 ms / 2,000 ms
コード長 987 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 248,320 KB
最終ジャッジ日時 2024-06-08 21:59:23
合計ジャッジ時間 9,956 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 747 ms
245,504 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 713 ms
245,728 KB
testcase_05 AC 79 ms
69,248 KB
testcase_06 AC 61 ms
62,976 KB
testcase_07 AC 74 ms
67,328 KB
testcase_08 AC 727 ms
245,376 KB
testcase_09 AC 684 ms
248,320 KB
testcase_10 AC 600 ms
244,372 KB
testcase_11 AC 39 ms
51,712 KB
testcase_12 AC 39 ms
52,352 KB
testcase_13 AC 744 ms
245,436 KB
testcase_14 AC 720 ms
245,504 KB
testcase_15 AC 570 ms
243,200 KB
testcase_16 AC 482 ms
205,056 KB
testcase_17 AC 56 ms
64,384 KB
testcase_18 AC 648 ms
246,876 KB
testcase_19 AC 440 ms
189,440 KB
testcase_20 AC 165 ms
104,576 KB
testcase_21 AC 312 ms
150,656 KB
testcase_22 AC 66 ms
68,352 KB
testcase_23 AC 273 ms
140,672 KB
testcase_24 AC 303 ms
150,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# M<10**6で、L, R < 10**18
# しかしMを超えれば余りはゼロになる
# つまり計算はMまででいい

L, R, M = map(int, input().split())
mod = M
N = M

# nCrメモ化パッケージ
factorial = [1] #0分
inverse = [1] #0分
for i in range(1, N+1):
    factorial.append(factorial[-1]*i%mod)
    inverse.append(pow(factorial[-1], mod-2, mod))

# パッケージだからあるけど今回は使わないnCr_fast
def nCr_fast(N, R, MOD):
    if N < R or R < 0:
        return 0
    elif R == 0 or R == N:
        return 1
    return factorial[N]*inverse[R]*inverse[N-R]%MOD

factorial_factorial = [1]
for i in range(1, N+1):
    factorial_factorial.append(factorial_factorial[-1]*factorial[i]%mod)

if L >= M:
    ans = 0
elif L < M and R >= M:
    ans = 0
    for i in range(L, M+1):
        ans += factorial_factorial[i]
        ans %= mod
elif L < M and R < M:
    ans = 0
    for i in range(L, R+1):
        ans += factorial_factorial[i] 
        ans %= mod
print(ans)
0