結果

問題 No.2710 How many more?
ユーザー detteiuudetteiuu
提出日時 2024-04-11 02:09:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 91,656 KB
最終ジャッジ日時 2024-10-02 21:10:53
合計ジャッジ時間 5,828 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 261 ms
89,424 KB
testcase_03 AC 202 ms
85,248 KB
testcase_04 AC 172 ms
90,880 KB
testcase_05 AC 154 ms
82,560 KB
testcase_06 AC 163 ms
87,808 KB
testcase_07 AC 164 ms
82,176 KB
testcase_08 AC 156 ms
80,640 KB
testcase_09 AC 235 ms
87,936 KB
testcase_10 AC 180 ms
82,640 KB
testcase_11 AC 226 ms
85,988 KB
testcase_12 AC 281 ms
89,472 KB
testcase_13 AC 289 ms
91,656 KB
testcase_14 AC 294 ms
91,136 KB
testcase_15 AC 287 ms
91,392 KB
testcase_16 AC 296 ms
91,136 KB
testcase_17 AC 294 ms
91,520 KB
testcase_18 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right

N, Q = map(int, input().split())
A = list(map(int, input().split()))
query = [list(map(int, input().split())) for _ in range(Q)]

S = sorted(A)
for i in range(Q):
    x, y = query[i]
    if A[x-1] <= A[y-1]:
        print(0)
    else:
        print(bisect_left(S, A[x-1])-bisect_right(S, A[y-1]))
0