結果

問題 No.2176 LRM Question 1
ユーザー 👑 KazunKazun
提出日時 2023-01-06 21:24:55
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 397 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-05-07 20:54:31
合計ジャッジ時間 2,476 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 86 ms
73,984 KB
testcase_03 AC 36 ms
51,456 KB
testcase_04 AC 81 ms
73,600 KB
testcase_05 AC 41 ms
58,624 KB
testcase_06 AC 38 ms
58,240 KB
testcase_07 AC 40 ms
58,240 KB
testcase_08 AC 82 ms
73,472 KB
testcase_09 AC 80 ms
73,472 KB
testcase_10 AC 81 ms
71,296 KB
testcase_11 AC 35 ms
51,584 KB
testcase_12 AC 33 ms
51,456 KB
testcase_13 RE -
testcase_14 AC 89 ms
73,600 KB
testcase_15 AC 74 ms
70,656 KB
testcase_16 AC 69 ms
68,352 KB
testcase_17 AC 39 ms
58,240 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 58 ms
64,512 KB
testcase_22 AC 40 ms
58,880 KB
testcase_23 AC 55 ms
63,872 KB
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    if L>M:
        L=M
    elif 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