結果

問題 No.2181 LRM Question 2
ユーザー MasKoaTSMasKoaTS
提出日時 2022-09-13 22:48:35
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 353 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 318,772 KB
最終ジャッジ日時 2024-12-17 15:09:59
合計ジャッジ時間 52,974 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,944 KB
testcase_01 AC 38 ms
312,552 KB
testcase_02 TLE -
testcase_03 AC 37 ms
136,236 KB
testcase_04 AC 36 ms
59,156 KB
testcase_05 AC 37 ms
312,404 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 141 ms
82,936 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 42 ms
59,620 KB
testcase_24 AC 36 ms
52,288 KB
testcase_25 AC 37 ms
318,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 愚直解

import sys
input = sys.stdin.readline

l, r, m = map(int, input().split())
ans = 0
for n in range(l, r + 1):
	a = 1
	for i in range(1, n + 1):
		a *= i ** 2
	b = 0
	for i in range(1, n):
		c = 1
		for j in range(1, i + 1):
			c *= (n - j + 1) ** 2
		for j in range(i + 1, n + 1):
			c *= j ** 2
		b += c
	ans += b // a
	ans %= m
print(ans)
0