結果

問題 No.2710 How many more?
ユーザー noriocnorioc
提出日時 2024-04-02 01:11:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 486 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 108,284 KB
最終ジャッジ日時 2024-09-30 22:59:19
合計ジャッジ時間 7,598 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,232 KB
testcase_01 AC 39 ms
53,372 KB
testcase_02 AC 357 ms
95,208 KB
testcase_03 AC 259 ms
95,096 KB
testcase_04 AC 221 ms
107,468 KB
testcase_05 AC 187 ms
90,248 KB
testcase_06 AC 200 ms
100,652 KB
testcase_07 AC 244 ms
77,856 KB
testcase_08 AC 212 ms
80,920 KB
testcase_09 AC 321 ms
100,708 KB
testcase_10 AC 248 ms
87,516 KB
testcase_11 AC 305 ms
84,296 KB
testcase_12 AC 395 ms
104,832 KB
testcase_13 AC 424 ms
108,040 KB
testcase_14 AC 486 ms
108,068 KB
testcase_15 AC 458 ms
107,968 KB
testcase_16 AC 485 ms
108,284 KB
testcase_17 AC 418 ms
108,040 KB
testcase_18 AC 38 ms
52,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right

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

d = {}
for i, a in enumerate(A):
    d[i] = a

ss = sorted(A)
for _ in range(Q):
    x, y = map(lambda x: int(x)-1, input().split())
    # x が y に追いつくには
    if d[x] <= d[y]:
        print(0)
        continue

    # d[y] < s < d[x] の個数
    p = bisect_left(ss, d[y]+1)
    q = bisect_right(ss, d[x]-1)
    print(q - p)
0