結果

問題 No.2176 LRM Question 1
ユーザー HydruHydru
提出日時 2023-01-06 21:39:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 135,680 KB
最終ジャッジ日時 2024-05-07 21:10:00
合計ジャッジ時間 2,925 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 117 ms
135,680 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 107 ms
135,040 KB
testcase_05 AC 51 ms
61,568 KB
testcase_06 AC 44 ms
59,136 KB
testcase_07 AC 47 ms
61,220 KB
testcase_08 AC 108 ms
135,296 KB
testcase_09 AC 105 ms
127,616 KB
testcase_10 AC 102 ms
120,192 KB
testcase_11 AC 41 ms
51,456 KB
testcase_12 AC 39 ms
51,840 KB
testcase_13 AC 106 ms
135,040 KB
testcase_14 AC 115 ms
135,424 KB
testcase_15 AC 102 ms
119,296 KB
testcase_16 AC 89 ms
107,136 KB
testcase_17 AC 45 ms
59,904 KB
testcase_18 AC 99 ms
126,464 KB
testcase_19 AC 80 ms
101,376 KB
testcase_20 AC 54 ms
72,832 KB
testcase_21 AC 69 ms
88,576 KB
testcase_22 AC 51 ms
61,312 KB
testcase_23 AC 72 ms
85,120 KB
testcase_24 AC 65 ms
88,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l,r,m=map(int,input().split())

A=[0]
factorial_value=1
factorial_factorial_value=1
for i in range(1,m):
    factorial_value*=i
    factorial_value%=m
    factorial_factorial_value*=factorial_value
    factorial_factorial_value%=m
    A.append(factorial_factorial_value)

ans=0
for i in range(l,min(m,r+1)):
    ans+=A[i]
    ans%=m


print(ans)
0