結果

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

ソースコード

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