結果

問題 No.2710 How many more?
ユーザー 👑 rin204rin204
提出日時 2024-04-07 14:24:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 477 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 92,064 KB
最終ジャッジ日時 2024-10-01 04:29:38
合計ジャッジ時間 7,165 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,556 KB
testcase_01 AC 39 ms
53,928 KB
testcase_02 AC 415 ms
84,348 KB
testcase_03 AC 292 ms
84,748 KB
testcase_04 AC 253 ms
91,616 KB
testcase_05 AC 214 ms
82,192 KB
testcase_06 AC 220 ms
87,828 KB
testcase_07 AC 254 ms
77,580 KB
testcase_08 AC 213 ms
78,836 KB
testcase_09 AC 364 ms
88,080 KB
testcase_10 AC 260 ms
82,052 KB
testcase_11 AC 366 ms
80,840 KB
testcase_12 AC 445 ms
89,992 KB
testcase_13 AC 477 ms
91,376 KB
testcase_14 AC 474 ms
92,064 KB
testcase_15 AC 477 ms
91,976 KB
testcase_16 AC 470 ms
91,900 KB
testcase_17 AC 474 ms
91,596 KB
testcase_18 AC 39 ms
53,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left, bisect_right

n, Q = map(int, input().split())
A = list(map(int, input().split()))
B = sorted(A)
for _ in range(Q):
    x, y = map(int, input().split())
    x = A[x - 1]
    y = A[y - 1]
    ans = bisect_left(B, x) - bisect_right(B, y)
    print(max(ans, 0))
0