結果

問題 No.2710 How many more?
ユーザー CecilCecil
提出日時 2024-03-31 14:47:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 810 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,832 KB
最終ジャッジ日時 2024-09-30 19:56:40
合計ジャッジ時間 10,286 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 699 ms
17,360 KB
testcase_03 AC 429 ms
17,724 KB
testcase_04 AC 285 ms
20,940 KB
testcase_05 AC 218 ms
15,936 KB
testcase_06 AC 219 ms
19,624 KB
testcase_07 AC 340 ms
11,392 KB
testcase_08 AC 234 ms
13,192 KB
testcase_09 AC 591 ms
19,192 KB
testcase_10 AC 331 ms
15,264 KB
testcase_11 AC 578 ms
14,580 KB
testcase_12 AC 765 ms
20,904 KB
testcase_13 AC 784 ms
21,832 KB
testcase_14 AC 804 ms
21,832 KB
testcase_15 AC 810 ms
21,820 KB
testcase_16 AC 792 ms
21,816 KB
testcase_17 AC 795 ms
21,832 KB
testcase_18 AC 27 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

N,Q = map(int, input().split())
A = list(map(int, input().split()))
for i in range(N):
    A[i] *= -1
tmp_A = A.copy()
tmp_A.sort()

for _ in range(Q):
    x,y = map(int, input().split())
    l = bisect.bisect_right(tmp_A, A[x-1])
    r = bisect.bisect_left(tmp_A, A[y-1])
    if r-l<=0:
        print(0)
    else:
        print(r-l)
0