結果

問題 No.2710 How many more?
ユーザー Meso MesoMeso Meso
提出日時 2024-05-21 09:38:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 856 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,000 KB
最終ジャッジ日時 2024-05-21 09:38:24
合計ジャッジ時間 11,024 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 850 ms
17,372 KB
testcase_03 AC 401 ms
17,736 KB
testcase_04 AC 249 ms
21,036 KB
testcase_05 AC 218 ms
15,996 KB
testcase_06 AC 239 ms
19,764 KB
testcase_07 AC 363 ms
11,392 KB
testcase_08 AC 241 ms
13,204 KB
testcase_09 AC 594 ms
19,212 KB
testcase_10 AC 337 ms
15,268 KB
testcase_11 AC 595 ms
14,568 KB
testcase_12 AC 856 ms
20,884 KB
testcase_13 AC 835 ms
21,872 KB
testcase_14 AC 846 ms
21,872 KB
testcase_15 AC 843 ms
22,000 KB
testcase_16 AC 845 ms
21,868 KB
testcase_17 AC 822 ms
21,872 KB
testcase_18 AC 27 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

n, q = map(int, input().split())
A = list(map(int, input().split()))
B = sorted(A)

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