結果

問題 No.2181 LRM Question 2
ユーザー hari64hari64
提出日時 2023-01-06 23:13:32
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 244 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,200 KB
最終ジャッジ日時 2024-11-30 20:00:18
合計ジャッジ時間 43,712 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
17,444 KB
testcase_01 AC 26 ms
21,376 KB
testcase_02 TLE -
testcase_03 AC 27 ms
17,440 KB
testcase_04 AC 26 ms
17,448 KB
testcase_05 AC 26 ms
21,632 KB
testcase_06 AC 107 ms
17,444 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 45 ms
17,568 KB
testcase_15 AC 27 ms
21,632 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 28 ms
17,568 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 27 ms
10,752 KB
testcase_24 AC 27 ms
10,624 KB
testcase_25 AC 26 ms
28,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = (M-2) * (R - L + 1) % M

C = 1
for i in range(1, L+1):
    C *= (L+i)
    C //= i
for i in range(L, R+1):
    ans += C
    ans %= M
    C *= (2 * i + 1)*(2 * i + 2)
    C //= (i + 1)*(i+1)

print(ans)
0