結果

問題 No.2710 How many more?
ユーザー loop0919loop0919
提出日時 2024-03-31 14:05:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 422 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 91,828 KB
最終ジャッジ日時 2024-09-30 18:56:33
合計ジャッジ時間 6,750 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,380 KB
testcase_01 AC 33 ms
53,160 KB
testcase_02 AC 380 ms
84,552 KB
testcase_03 AC 254 ms
84,620 KB
testcase_04 AC 203 ms
91,424 KB
testcase_05 AC 190 ms
82,444 KB
testcase_06 AC 191 ms
88,228 KB
testcase_07 AC 236 ms
77,356 KB
testcase_08 AC 195 ms
78,676 KB
testcase_09 AC 320 ms
88,056 KB
testcase_10 AC 227 ms
82,392 KB
testcase_11 AC 319 ms
80,536 KB
testcase_12 AC 387 ms
89,768 KB
testcase_13 AC 405 ms
91,632 KB
testcase_14 AC 416 ms
91,828 KB
testcase_15 AC 413 ms
91,488 KB
testcase_16 AC 422 ms
91,632 KB
testcase_17 AC 413 ms
91,804 KB
testcase_18 AC 35 ms
52,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right

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

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