結果

問題 No.2176 LRM Question 1
ユーザー coder_So_heycoder_So_hey
提出日時 2023-01-06 22:23:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 434 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-11-30 18:40:50
合計ジャッジ時間 5,979 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,128 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 WA -
testcase_05 AC 29 ms
10,752 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 TLE -
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 30 ms
10,880 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 29 ms
21,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def fac(n, m):
    if n > 1:
        n *= fac(n - 1, m)
        n %= m
        return n
    else:
        return 1

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

if L >= M:
    print(0)
    exit()

facto = 1
index = 2
while facto != 0:
    facto *= fac(index, M)
    facto %= M
    index += 1

ans = 0
for i in range(L, index):
    a = 1
    for j in range(1, i + 1):
        a *= fac(j, M)
        a %= M
    ans += a
    ans %= M

print(ans)
0