結果

問題 No.2710 How many more?
ユーザー かもめのうでかもめのうで
提出日時 2024-03-31 22:51:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 486 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 92,104 KB
最終ジャッジ日時 2024-09-30 21:29:30
合計ジャッジ時間 7,009 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,808 KB
testcase_01 AC 39 ms
53,192 KB
testcase_02 AC 435 ms
84,000 KB
testcase_03 AC 290 ms
84,520 KB
testcase_04 AC 226 ms
91,616 KB
testcase_05 AC 209 ms
82,304 KB
testcase_06 AC 210 ms
88,304 KB
testcase_07 AC 246 ms
77,072 KB
testcase_08 AC 205 ms
78,016 KB
testcase_09 AC 340 ms
87,644 KB
testcase_10 AC 248 ms
82,212 KB
testcase_11 AC 352 ms
80,784 KB
testcase_12 AC 486 ms
89,808 KB
testcase_13 AC 444 ms
91,772 KB
testcase_14 AC 468 ms
92,104 KB
testcase_15 AC 454 ms
91,888 KB
testcase_16 AC 455 ms
91,568 KB
testcase_17 AC 483 ms
91,304 KB
testcase_18 AC 38 ms
52,612 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 -= 1
    y -= 1
    ax = a[x]
    ay = a[y]

    r = bisect_left(b, ax)
    l = bisect_right(b, ay)
    print(max(0, r-l))
0