結果

問題 No.2710 How many more?
ユーザー ButterflvButterflv
提出日時 2024-04-18 11:01:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 503 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 82,896 KB
実行使用メモリ 92,264 KB
最終ジャッジ日時 2024-10-10 04:14:42
合計ジャッジ時間 8,494 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,332 KB
testcase_01 AC 38 ms
54,308 KB
testcase_02 AC 440 ms
84,812 KB
testcase_03 AC 297 ms
84,716 KB
testcase_04 AC 241 ms
91,480 KB
testcase_05 AC 219 ms
82,340 KB
testcase_06 AC 222 ms
88,008 KB
testcase_07 AC 257 ms
77,624 KB
testcase_08 AC 221 ms
78,736 KB
testcase_09 AC 387 ms
88,108 KB
testcase_10 AC 269 ms
82,300 KB
testcase_11 AC 376 ms
80,664 KB
testcase_12 AC 467 ms
90,032 KB
testcase_13 AC 491 ms
91,628 KB
testcase_14 AC 495 ms
92,016 KB
testcase_15 AC 503 ms
92,264 KB
testcase_16 AC 498 ms
91,964 KB
testcase_17 AC 489 ms
91,528 KB
testcase_18 AC 39 ms
53,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q=map(int, input().split())
A=list(map(int, input().split()))
B=A[:]
B.sort()
import bisect

for _ in range(Q):
  x, y=map(int, input().split())
  rightIND=bisect.bisect_left(B, A[x-1])
  leftIND=bisect.bisect_right(B, A[y-1])
  print(max(0, rightIND-leftIND))
0