結果

問題 No.2710 How many more?
ユーザー YU Hirose
提出日時 2024-07-10 20:13:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

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