結果

問題 No.2710 How many more?
ユーザー pluto77pluto77
提出日時 2024-05-17 16:12:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 839 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,824 KB
最終ジャッジ日時 2024-05-17 16:12:53
合計ジャッジ時間 11,707 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 805 ms
17,356 KB
testcase_03 AC 395 ms
17,848 KB
testcase_04 AC 254 ms
21,184 KB
testcase_05 AC 226 ms
15,928 KB
testcase_06 AC 229 ms
19,620 KB
testcase_07 AC 340 ms
11,520 KB
testcase_08 AC 240 ms
13,184 KB
testcase_09 AC 586 ms
19,212 KB
testcase_10 AC 344 ms
15,252 KB
testcase_11 AC 577 ms
14,572 KB
testcase_12 AC 767 ms
20,764 KB
testcase_13 AC 834 ms
21,824 KB
testcase_14 AC 829 ms
21,824 KB
testcase_15 AC 839 ms
21,820 KB
testcase_16 AC 818 ms
21,824 KB
testcase_17 AC 809 ms
21,824 KB
testcase_18 AC 29 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
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())
 if a[x-1]<=a[y-1]:
  print(0)
  continue
 print(((bisect_left(b,a[x-1])-bisect(b,a[y-1]))))
0