結果

問題 No.2710 How many more?
ユーザー pitPpitP
提出日時 2024-03-31 14:02:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 420 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 1,908 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 92,112 KB
最終ジャッジ日時 2024-09-30 18:51:19
合計ジャッジ時間 6,439 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,472 KB
testcase_01 AC 39 ms
52,476 KB
testcase_02 AC 374 ms
84,508 KB
testcase_03 AC 259 ms
84,608 KB
testcase_04 AC 195 ms
91,212 KB
testcase_05 AC 170 ms
83,120 KB
testcase_06 AC 174 ms
87,940 KB
testcase_07 AC 200 ms
77,628 KB
testcase_08 AC 169 ms
78,244 KB
testcase_09 AC 282 ms
87,904 KB
testcase_10 AC 203 ms
82,188 KB
testcase_11 AC 296 ms
80,064 KB
testcase_12 AC 355 ms
89,652 KB
testcase_13 AC 359 ms
92,112 KB
testcase_14 AC 357 ms
91,972 KB
testcase_15 AC 420 ms
91,728 KB
testcase_16 AC 359 ms
92,028 KB
testcase_17 AC 406 ms
91,800 KB
testcase_18 AC 37 ms
52,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right
N, Q = map(int, input().split())
A = list(map(int, input().split()))
B = A[:]
B.sort()
# print(B)

for _ in range(Q):
    xq, yq = map(int, input().split())
    xq -= 1
    yq -= 1
    # print(A[xq], A[yq])
    if A[xq] <= A[yq]:
        print(0)
    else:
        r = bisect_left(B, A[xq])
        l = bisect_right(B, A[yq])
        print(r - l)
0