結果

問題 No.2710 How many more?
ユーザー n_nan_na
提出日時 2024-04-01 22:29:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 397 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 92,264 KB
最終ジャッジ日時 2024-09-30 22:34:37
合計ジャッジ時間 5,962 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,764 KB
testcase_01 AC 38 ms
53,500 KB
testcase_02 AC 316 ms
84,664 KB
testcase_03 AC 230 ms
84,736 KB
testcase_04 AC 189 ms
91,516 KB
testcase_05 AC 167 ms
82,568 KB
testcase_06 AC 181 ms
87,908 KB
testcase_07 AC 201 ms
77,644 KB
testcase_08 AC 168 ms
78,320 KB
testcase_09 AC 284 ms
87,792 KB
testcase_10 AC 204 ms
82,084 KB
testcase_11 AC 275 ms
80,824 KB
testcase_12 AC 341 ms
90,036 KB
testcase_13 AC 397 ms
92,252 KB
testcase_14 AC 374 ms
92,144 KB
testcase_15 AC 365 ms
92,264 KB
testcase_16 AC 366 ms
91,880 KB
testcase_17 AC 355 ms
91,748 KB
testcase_18 AC 37 ms
52,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

N,Q = map(int,input().split())
A = list(map(int,input().split()))
B = sorted(A)

for _ in range(Q):
    x,y = map(int,input().split())
    X,Y = A[x-1],A[y-1]
    if X <= Y:
        print(0)
    else:
        lft = bisect.bisect_right(B, Y)
        rgt = bisect.bisect_left(B, X)
        print(rgt - lft)
0