結果

問題 No.2176 LRM Question 1
ユーザー MasKoaTSMasKoaTS
提出日時 2022-08-28 18:24:54
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 264 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 60,396 KB
最終ジャッジ日時 2024-10-07 05:21:35
合計ジャッジ時間 2,172 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
52,240 KB
testcase_02 AC 50 ms
59,136 KB
testcase_03 AC 38 ms
52,152 KB
testcase_04 AC 38 ms
52,124 KB
testcase_05 AC 44 ms
59,912 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 38 ms
52,456 KB
testcase_12 AC 39 ms
52,796 KB
testcase_13 AC 49 ms
58,744 KB
testcase_14 AC 51 ms
59,148 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 44 ms
59,800 KB
testcase_18 AC 48 ms
58,928 KB
testcase_19 AC 46 ms
58,552 KB
testcase_20 AC 42 ms
59,432 KB
testcase_21 AC 47 ms
60,064 KB
testcase_22 WA -
testcase_23 AC 47 ms
58,684 KB
testcase_24 AC 47 ms
59,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

l, r, m = map(int, input().split())

a, b = 1, 1
for i in range(1, min(m, l + 1)):
	a *= i;  a %= m
	b *= a;  b %= m
ans = 0
for i in range(l, min(m, r + 1)):
	a *= i;  a %= m
	b *= a;  b %= m
	ans += b;  ans %= m
print(ans)
0