結果

問題 No.2176 LRM Question 1
ユーザー vwxyzvwxyz
提出日時 2023-06-14 16:34:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 919 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 58,752 KB
最終ジャッジ日時 2024-06-23 00:36:41
合計ジャッジ時間 10,371 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
12,032 KB
testcase_01 AC 39 ms
11,904 KB
testcase_02 AC 784 ms
27,520 KB
testcase_03 AC 40 ms
11,904 KB
testcase_04 WA -
testcase_05 AC 69 ms
12,160 KB
testcase_06 WA -
testcase_07 AC 63 ms
12,288 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 573 ms
25,088 KB
testcase_11 AC 40 ms
11,904 KB
testcase_12 AC 41 ms
11,904 KB
testcase_13 AC 630 ms
19,696 KB
testcase_14 AC 916 ms
58,752 KB
testcase_15 AC 552 ms
26,624 KB
testcase_16 AC 460 ms
22,004 KB
testcase_17 AC 55 ms
12,032 KB
testcase_18 AC 594 ms
19,052 KB
testcase_19 AC 418 ms
16,716 KB
testcase_20 AC 169 ms
13,440 KB
testcase_21 AC 292 ms
18,236 KB
testcase_22 AC 64 ms
12,544 KB
testcase_23 AC 271 ms
17,364 KB
testcase_24 AC 322 ms
15,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines
write=sys.stdout.write

L,R,M=map(int,readline().split())
fact=[1]*(M+1)
for m in range(1,M+1):
    fact[m]=fact[m-1]*m
    fact[m]%=M
for m in range(1,M+1):
    fact[m]*=fact[m-1]
    fact[m]%=M
L=min(L,M+1)
R=min(R,M+1)
ans=sum(fact[L:R])%M
print(ans)
0