結果

問題 No.2710 How many more?
ユーザー shobonvipshobonvip
提出日時 2024-04-01 01:42:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 371 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 92,064 KB
最終ジャッジ日時 2024-09-30 21:35:01
合計ジャッジ時間 6,057 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,608 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 334 ms
84,480 KB
testcase_03 AC 240 ms
84,736 KB
testcase_04 AC 191 ms
91,660 KB
testcase_05 AC 170 ms
82,680 KB
testcase_06 AC 180 ms
88,192 KB
testcase_07 AC 205 ms
77,568 KB
testcase_08 AC 171 ms
78,464 KB
testcase_09 AC 291 ms
88,064 KB
testcase_10 AC 211 ms
82,432 KB
testcase_11 AC 288 ms
80,768 KB
testcase_12 AC 354 ms
89,856 KB
testcase_13 AC 367 ms
91,948 KB
testcase_14 AC 365 ms
91,776 KB
testcase_15 AC 371 ms
91,904 KB
testcase_16 AC 370 ms
91,776 KB
testcase_17 AC 366 ms
92,064 KB
testcase_18 AC 38 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
n,q=map(int,input().split())
a=list(map(int,input().split()))
b=sorted(a)
for i in range(q):
	x,y=map(int,input().split())
	x-=1
	y-=1
	if a[x]<=a[y]:
		print(0)
	else:
		f = bisect.bisect_right(b,a[y])
		g = bisect.bisect_left(b,a[x])
		print(g-f)
0