結果

問題 No.2176 LRM Question 1
ユーザー 👑 KazunKazun
提出日時 2023-01-06 21:26:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 74,240 KB
最終ジャッジ日時 2024-05-07 20:55:42
合計ジャッジ時間 2,341 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,096 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 92 ms
73,984 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 81 ms
73,600 KB
testcase_05 AC 43 ms
58,624 KB
testcase_06 AC 39 ms
58,752 KB
testcase_07 AC 38 ms
58,496 KB
testcase_08 AC 82 ms
73,728 KB
testcase_09 AC 86 ms
73,472 KB
testcase_10 AC 77 ms
71,424 KB
testcase_11 AC 34 ms
52,096 KB
testcase_12 AC 34 ms
52,224 KB
testcase_13 AC 79 ms
73,344 KB
testcase_14 AC 85 ms
74,240 KB
testcase_15 AC 76 ms
70,784 KB
testcase_16 AC 71 ms
68,480 KB
testcase_17 AC 41 ms
58,752 KB
testcase_18 AC 76 ms
72,064 KB
testcase_19 AC 68 ms
67,712 KB
testcase_20 AC 47 ms
61,312 KB
testcase_21 AC 59 ms
64,640 KB
testcase_22 AC 39 ms
58,880 KB
testcase_23 AC 56 ms
64,000 KB
testcase_24 AC 54 ms
64,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    if L>M:
        L=M
    if R>M:
        R=M

    fact=[1]*(M+1)
    for i in range(1,M+1):
        fact[i]=i*fact[i-1]%M

    prod=[1]*(M+1)
    for i in range(1,M+1):
        prod[i]=fact[i]*prod[i-1]%M

    X=0
    for i in range(L,R+1):
        X+=prod[i]
    return X%M

#==================================================
print(solve())
0