結果

問題 No.2710 How many more?
ユーザー 茅ヶ崎裕太
提出日時 2024-03-31 14:47:23
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 929 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,948 KB
最終ジャッジ日時 2024-09-30 19:57:34
合計ジャッジ時間 11,321 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
H,Q=map(int,input().split())
A=list(map(int,input().split()))
L=sorted(A)

for i in range(Q):
    x,y=map(int,input().split())
    if A[x-1] <= A[y-1]:
        print(0)
        continue
    print(((bisect_left(L,A[x-1])-bisect(L,A[y-1]))))
    
0