結果

問題 No.2710 How many more?
ユーザー Nikkuniku029Nikkuniku029
提出日時 2024-04-05 18:09:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 399 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 108,384 KB
最終ジャッジ日時 2024-10-01 01:24:27
合計ジャッジ時間 6,667 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,784 KB
testcase_01 AC 44 ms
54,428 KB
testcase_02 AC 334 ms
95,192 KB
testcase_03 AC 248 ms
95,412 KB
testcase_04 AC 222 ms
108,088 KB
testcase_05 AC 187 ms
90,936 KB
testcase_06 AC 205 ms
101,068 KB
testcase_07 AC 183 ms
80,520 KB
testcase_08 AC 176 ms
80,980 KB
testcase_09 AC 305 ms
101,184 KB
testcase_10 AC 219 ms
87,864 KB
testcase_11 AC 274 ms
86,124 KB
testcase_12 AC 368 ms
104,896 KB
testcase_13 AC 397 ms
108,272 KB
testcase_14 AC 395 ms
108,284 KB
testcase_15 AC 399 ms
108,292 KB
testcase_16 AC 397 ms
108,236 KB
testcase_17 AC 392 ms
108,384 KB
testcase_18 AC 45 ms
55,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right
from collections import defaultdict

N, Q = map(int, input().split())
A = list(map(int, input().split()))
maxA = max(A)
B = [maxA - A[i] for i in range(N)]
d = defaultdict(int)
for i in range(N):
    d[i] = B[i]
B.sort()
ans = []
for _ in range(Q):
    x, y = map(int, input().split())
    x -= 1
    y -= 1
    p = bisect_left(B, d[y])
    q = bisect_right(B, d[x])
    ans.append(max(p - q, 0))
print(*ans, sep="\n")
0