結果

問題 No.2176 LRM Question 1
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-25 13:57:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 214 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 122,616 KB
最終ジャッジ日時 2024-08-25 13:58:09
合計ジャッジ時間 2,921 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,560 KB
testcase_01 WA -
testcase_02 AC 106 ms
122,244 KB
testcase_03 AC 38 ms
52,508 KB
testcase_04 AC 93 ms
122,248 KB
testcase_05 AC 45 ms
65,376 KB
testcase_06 AC 38 ms
60,808 KB
testcase_07 AC 42 ms
62,324 KB
testcase_08 AC 96 ms
122,224 KB
testcase_09 AC 93 ms
122,412 KB
testcase_10 AC 97 ms
122,616 KB
testcase_11 AC 35 ms
52,484 KB
testcase_12 AC 33 ms
51,888 KB
testcase_13 AC 101 ms
122,244 KB
testcase_14 AC 103 ms
122,384 KB
testcase_15 AC 101 ms
122,396 KB
testcase_16 AC 90 ms
122,236 KB
testcase_17 AC 45 ms
61,948 KB
testcase_18 AC 101 ms
122,396 KB
testcase_19 AC 82 ms
117,376 KB
testcase_20 AC 55 ms
79,464 KB
testcase_21 AC 71 ms
99,516 KB
testcase_22 AC 42 ms
63,280 KB
testcase_23 AC 69 ms
94,836 KB
testcase_24 AC 69 ms
99,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l,r,M=map(int,input().split())
l=min(l,M-1)
r=min(r,M-1)
fa=[1]
for i in range(1,M+1):
  fa+=[fa[-1]*i%M]
a=0
s=1
for i in range(l):
  s*=fa[i]
  s%=M
for i in range(l,r+1):
  s*=fa[i]
  s%=M
  a+=s
  a%=M
print(a)
0