結果

問題 No.2710 How many more?
ユーザー vwxyzvwxyz
提出日時 2024-07-17 06:42:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 953 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,924 KB
最終ジャッジ日時 2024-07-17 06:43:05
合計ジャッジ時間 12,283 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 833 ms
17,236 KB
testcase_03 AC 474 ms
17,732 KB
testcase_04 AC 277 ms
21,072 KB
testcase_05 AC 246 ms
15,940 KB
testcase_06 AC 240 ms
19,636 KB
testcase_07 AC 385 ms
11,520 KB
testcase_08 AC 265 ms
13,196 KB
testcase_09 AC 651 ms
19,248 KB
testcase_10 AC 403 ms
15,268 KB
testcase_11 AC 644 ms
14,708 KB
testcase_12 AC 896 ms
20,780 KB
testcase_13 AC 942 ms
21,836 KB
testcase_14 AC 912 ms
21,924 KB
testcase_15 AC 940 ms
21,840 KB
testcase_16 AC 953 ms
21,832 KB
testcase_17 AC 938 ms
21,836 KB
testcase_18 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

N,Q=map(int,input().split())
A=list(map(int,input().split()))
sorted_A=sorted(A)
for q in range(Q):
    x,y=map(int,input().split())
    x-=1;y-=1
    if A[y]>=A[x]:
        ans=0
    else:
        ans=bisect.bisect_left(sorted_A,A[x])-bisect.bisect_right(sorted_A,A[y])
    print(ans)
0