結果

問題 No.2710 How many more?
ユーザー 茅ヶ崎裕太茅ヶ崎裕太
提出日時 2024-03-31 14:47:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 929 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,948 KB
最終ジャッジ日時 2024-09-30 19:57:34
合計ジャッジ時間 11,321 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 820 ms
17,356 KB
testcase_03 AC 443 ms
17,720 KB
testcase_04 AC 283 ms
21,048 KB
testcase_05 AC 247 ms
15,928 KB
testcase_06 AC 246 ms
19,620 KB
testcase_07 AC 378 ms
11,392 KB
testcase_08 AC 271 ms
13,184 KB
testcase_09 AC 650 ms
19,208 KB
testcase_10 AC 377 ms
15,256 KB
testcase_11 AC 633 ms
14,572 KB
testcase_12 AC 853 ms
20,768 KB
testcase_13 AC 929 ms
21,816 KB
testcase_14 AC 917 ms
21,948 KB
testcase_15 AC 894 ms
21,824 KB
testcase_16 AC 899 ms
21,820 KB
testcase_17 AC 899 ms
21,824 KB
testcase_18 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
H,Q=map(int,input().split())
A=list(map(int,input().split()))
L=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(L,A[x-1])-bisect(L,A[y-1]))))
    
0