結果

問題 No.2176 LRM Question 1
ユーザー katonyonkokatonyonko
提出日時 2023-01-06 21:29:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 213,584 KB
最終ジャッジ日時 2024-05-07 20:59:20
合計ジャッジ時間 3,491 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 170 ms
213,576 KB
testcase_03 AC 36 ms
53,228 KB
testcase_04 AC 165 ms
212,676 KB
testcase_05 AC 47 ms
65,600 KB
testcase_06 AC 44 ms
61,056 KB
testcase_07 AC 50 ms
64,512 KB
testcase_08 AC 165 ms
212,820 KB
testcase_09 AC 154 ms
197,484 KB
testcase_10 AC 145 ms
182,192 KB
testcase_11 AC 37 ms
52,084 KB
testcase_12 AC 36 ms
52,832 KB
testcase_13 AC 162 ms
212,664 KB
testcase_14 AC 170 ms
213,584 KB
testcase_15 AC 144 ms
181,244 KB
testcase_16 AC 123 ms
155,784 KB
testcase_17 AC 44 ms
62,424 KB
testcase_18 AC 152 ms
195,844 KB
testcase_19 AC 108 ms
145,004 KB
testcase_20 AC 64 ms
88,876 KB
testcase_21 AC 90 ms
119,268 KB
testcase_22 AC 45 ms
65,532 KB
testcase_23 AC 89 ms
112,896 KB
testcase_24 AC 94 ms
119,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L,R,M=map(int,input().split())
ap=[1]
aap=[1]
for i in range(M): ap.append(ap[-1]*(i+1)%M)
for i in range(M): aap.append(aap[-1]*ap[i+1]%M)
ans=0
for i in range(L,R+1):
  if i>=M: break
  ans+=aap[i]
  ans%=M
print(ans)
0