結果

問題 No.2710 How many more?
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-04-01 02:12:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 541 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 92,960 KB
最終ジャッジ日時 2024-09-30 21:37:22
合計ジャッジ時間 8,050 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,696 KB
testcase_01 AC 41 ms
52,268 KB
testcase_02 AC 459 ms
84,908 KB
testcase_03 AC 306 ms
85,432 KB
testcase_04 AC 243 ms
92,460 KB
testcase_05 AC 228 ms
82,760 KB
testcase_06 AC 234 ms
88,428 KB
testcase_07 AC 262 ms
77,460 KB
testcase_08 AC 232 ms
78,704 KB
testcase_09 AC 394 ms
88,616 KB
testcase_10 AC 281 ms
82,844 KB
testcase_11 AC 393 ms
81,088 KB
testcase_12 AC 489 ms
90,660 KB
testcase_13 AC 519 ms
92,672 KB
testcase_14 AC 522 ms
92,400 KB
testcase_15 AC 541 ms
92,840 KB
testcase_16 AC 497 ms
92,960 KB
testcase_17 AC 491 ms
92,804 KB
testcase_18 AC 39 ms
53,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

n, q = map(int, input().split())
a = list(map(int, input().split()))
b = list(sorted(a))

for _ in range(q):
	x, y = map(int, input().split())
	x -= 1
	y -= 1
	# a[x]未満の個数
	ans = bisect_left(b, a[x])
	# a[y]以下の個数
	ans -= bisect_left(b, a[y] + 1)
	print(max(0, ans))
0