結果

問題 No.2710 How many more?
ユーザー Basin-BugBasin-Bug
提出日時 2024-03-31 14:54:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 552 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 108,232 KB
最終ジャッジ日時 2024-09-30 20:04:54
合計ジャッジ時間 7,520 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,292 KB
testcase_01 AC 43 ms
54,136 KB
testcase_02 AC 405 ms
94,768 KB
testcase_03 AC 290 ms
94,892 KB
testcase_04 AC 245 ms
107,732 KB
testcase_05 AC 218 ms
90,448 KB
testcase_06 AC 227 ms
100,860 KB
testcase_07 AC 235 ms
77,780 KB
testcase_08 AC 210 ms
80,852 KB
testcase_09 AC 430 ms
100,952 KB
testcase_10 AC 292 ms
87,784 KB
testcase_11 AC 347 ms
84,588 KB
testcase_12 AC 496 ms
104,516 KB
testcase_13 AC 552 ms
108,092 KB
testcase_14 AC 477 ms
108,208 KB
testcase_15 AC 477 ms
108,108 KB
testcase_16 AC 509 ms
108,232 KB
testcase_17 AC 471 ms
108,016 KB
testcase_18 AC 40 ms
54,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import bisect

N, Q = map(int, input().split())
A = list(map(int, input().split()))

B = sorted(A)
rank = defaultdict(int)
for i in range(N):
  rank[i] = A[i]

for i in range(Q):
  x, y = map(int, input().split())
  posx = bisect.bisect_left(B, rank[x - 1])
  posy = bisect.bisect_right(B, rank[y - 1])
  print(max(posx - posy, 0))
0