結果

問題 No.2176 LRM Question 1
ユーザー タコイモタコイモ
提出日時 2023-01-06 21:40:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 665 ms / 2,000 ms
コード長 719 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-30 17:29:48
合計ジャッジ時間 4,213 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 505 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 37 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 39 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 422 ms
10,624 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 27 ms
10,624 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 665 ms
10,624 KB
testcase_15 AC 413 ms
10,624 KB
testcase_16 AC 318 ms
10,624 KB
testcase_17 AC 36 ms
10,624 KB
testcase_18 AC 29 ms
10,624 KB
testcase_19 AC 26 ms
10,624 KB
testcase_20 AC 27 ms
10,752 KB
testcase_21 AC 207 ms
10,624 KB
testcase_22 AC 44 ms
10,624 KB
testcase_23 AC 180 ms
10,624 KB
testcase_24 AC 27 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(500000)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
from collections import defaultdict,deque
import bisect
import itertools
dic = defaultdict(int)
d = deque()
L,R,M = MI()
ans = 0
count = 1
cc = 1
if M <= L:
  print(0)
  exit()
for i in range(1,L+1):
  cc = (cc*i)%M
  count = (count*cc)%M
ans = count
for i in range(L+1,R+1):
  if i >= M:
    break
  else:
    cc = (cc*i)%M
    count = (count*cc)%M
    ans = (ans+count)%M
print(ans)

0