結果

問題 No.2710 How many more?
ユーザー KohkiKohki
提出日時 2024-11-01 21:23:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 527 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 567 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 92,492 KB
最終ジャッジ日時 2024-11-01 21:23:41
合計ジャッジ時間 8,214 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,440 KB
testcase_01 AC 38 ms
52,336 KB
testcase_02 AC 456 ms
85,000 KB
testcase_03 AC 293 ms
84,920 KB
testcase_04 AC 237 ms
91,604 KB
testcase_05 AC 218 ms
82,344 KB
testcase_06 AC 220 ms
87,888 KB
testcase_07 AC 259 ms
77,616 KB
testcase_08 AC 221 ms
78,556 KB
testcase_09 AC 373 ms
88,104 KB
testcase_10 AC 261 ms
82,308 KB
testcase_11 AC 369 ms
80,996 KB
testcase_12 AC 470 ms
90,160 KB
testcase_13 AC 478 ms
91,616 KB
testcase_14 AC 489 ms
91,904 KB
testcase_15 AC 489 ms
92,492 KB
testcase_16 AC 527 ms
92,104 KB
testcase_17 AC 491 ms
91,728 KB
testcase_18 AC 38 ms
52,736 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
    xx = bisect_left(B, A[x])
    yy = bisect_right(B, A[y])
    ans = max(0, xx - yy)
    print(ans)
0