結果

問題 No.2710 How many more?
ユーザー hiro1729hiro1729
提出日時 2024-03-31 13:44:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 468 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 91,776 KB
最終ジャッジ日時 2024-09-30 18:19:47
合計ジャッジ時間 6,985 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 394 ms
84,312 KB
testcase_03 AC 260 ms
84,772 KB
testcase_04 AC 217 ms
91,264 KB
testcase_05 AC 200 ms
82,740 KB
testcase_06 AC 203 ms
87,680 KB
testcase_07 AC 232 ms
77,340 KB
testcase_08 AC 202 ms
78,244 KB
testcase_09 AC 340 ms
87,936 KB
testcase_10 AC 237 ms
82,132 KB
testcase_11 AC 326 ms
80,580 KB
testcase_12 AC 400 ms
89,984 KB
testcase_13 AC 418 ms
91,776 KB
testcase_14 AC 425 ms
91,648 KB
testcase_15 AC 422 ms
91,776 KB
testcase_16 AC 468 ms
91,648 KB
testcase_17 AC 451 ms
91,648 KB
testcase_18 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left as bs
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())
	print(max(0, bs(B, A[x - 1]) - bs(B, A[y - 1] + 1)))
0