結果

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

ソースコード

diff #

H,Q=map(int,input().split())
A=list(map(int,input().split()))
L=sorted(A)
from bisect import bisect
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