結果

問題 No.2710 How many more?
ユーザー FromBooskaFromBooska
提出日時 2024-03-31 17:59:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 476 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 92,168 KB
最終ジャッジ日時 2024-09-30 21:12:50
合計ジャッジ時間 7,024 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 392 ms
84,352 KB
testcase_03 AC 271 ms
84,636 KB
testcase_04 AC 222 ms
91,520 KB
testcase_05 AC 198 ms
82,440 KB
testcase_06 AC 203 ms
87,912 KB
testcase_07 AC 240 ms
77,612 KB
testcase_08 AC 204 ms
78,696 KB
testcase_09 AC 336 ms
87,836 KB
testcase_10 AC 242 ms
82,304 KB
testcase_11 AC 342 ms
80,728 KB
testcase_12 AC 410 ms
90,368 KB
testcase_13 AC 462 ms
91,700 KB
testcase_14 AC 476 ms
92,032 KB
testcase_15 AC 445 ms
92,168 KB
testcase_16 AC 444 ms
92,160 KB
testcase_17 AC 442 ms
92,032 KB
testcase_18 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 入力例1であれば2番が1番に追いつくには7と20の間に数字が何個あるか数えればいい
# bisect_right, bisect_leftでどうか

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

from bisect import bisect_right, bisect_left

ans_list = []
for q in range(Q):
    x, y = map(int, input().split())
    x_idx = bisect_left(A_sorted, A[x-1])
    y_idx = bisect_right(A_sorted, A[y-1])
    #print('x', x, 'y', y, 'x_idx', x_idx, 'y_idx', y_idx)
    ans = max(x_idx - y_idx, 0)
    print(ans)
0