結果

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

ソースコード

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(L,A[x-1])-bisect(L,A[y-1])-1)))
    
0