結果

問題 No.2710 How many more?
ユーザー YU HiroseYU Hirose
提出日時 2024-07-10 20:13:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 911 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 709 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,832 KB
最終ジャッジ日時 2024-07-10 20:13:42
合計ジャッジ時間 11,940 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 758 ms
17,368 KB
testcase_03 AC 447 ms
17,476 KB
testcase_04 AC 265 ms
20,944 KB
testcase_05 AC 229 ms
15,812 KB
testcase_06 AC 230 ms
19,632 KB
testcase_07 AC 380 ms
11,520 KB
testcase_08 AC 252 ms
13,196 KB
testcase_09 AC 652 ms
19,096 KB
testcase_10 AC 383 ms
15,140 KB
testcase_11 AC 628 ms
14,964 KB
testcase_12 AC 858 ms
20,524 KB
testcase_13 AC 888 ms
21,576 KB
testcase_14 AC 899 ms
21,576 KB
testcase_15 AC 911 ms
21,580 KB
testcase_16 AC 895 ms
21,832 KB
testcase_17 AC 901 ms
21,584 KB
testcase_18 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right, bisect_left
n, q = map(int, input().split())
a = list(map(int, input().split()))
s = sorted(a)

for _ in [0]*q:
    x, y = map(int, input().split())
    l = bisect_right(s, a[y-1])
    r = bisect_left(s, a[x-1])
    if r <= l:
        print(0)
    else:
        print(r - l)
0