結果

問題 No.2710 How many more?
ユーザー watayuwatayu
提出日時 2024-03-31 14:57:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 435 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 86,912 KB
最終ジャッジ日時 2024-09-30 20:07:58
合計ジャッジ時間 6,763 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 394 ms
81,792 KB
testcase_03 AC 263 ms
81,652 KB
testcase_04 AC 217 ms
86,252 KB
testcase_05 AC 198 ms
80,240 KB
testcase_06 AC 207 ms
84,040 KB
testcase_07 AC 243 ms
77,444 KB
testcase_08 AC 205 ms
78,080 KB
testcase_09 AC 338 ms
84,096 KB
testcase_10 AC 237 ms
80,580 KB
testcase_11 AC 334 ms
79,360 KB
testcase_12 AC 403 ms
85,504 KB
testcase_13 AC 422 ms
86,912 KB
testcase_14 AC 429 ms
86,356 KB
testcase_15 AC 430 ms
86,144 KB
testcase_16 AC 435 ms
86,144 KB
testcase_17 AC 429 ms
86,428 KB
testcase_18 AC 37 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
n, q = map(int,input().split())
A = [int(i)*-1 for i in input().split()]
R = sorted(A)
for i in range(q):
	x,y=map(int, input().split())
	ans=bisect.bisect_right(R,A[x-1])-bisect.bisect_left(R,A[y-1])
	if A[x-1] >= A[y-1]:
		print(0)
	else:
		print(-1*ans)
0