結果

問題 No.2710 How many more?
ユーザー titiatitia
提出日時 2024-04-28 03:54:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 861 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,824 KB
最終ジャッジ日時 2024-11-16 13:19:57
合計ジャッジ時間 10,703 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 735 ms
17,356 KB
testcase_03 AC 407 ms
17,596 KB
testcase_04 AC 253 ms
20,932 KB
testcase_05 AC 222 ms
15,812 KB
testcase_06 AC 220 ms
19,496 KB
testcase_07 AC 342 ms
11,392 KB
testcase_08 AC 238 ms
12,940 KB
testcase_09 AC 582 ms
19,216 KB
testcase_10 AC 350 ms
15,132 KB
testcase_11 AC 593 ms
14,580 KB
testcase_12 AC 797 ms
20,644 KB
testcase_13 AC 840 ms
21,572 KB
testcase_14 AC 861 ms
21,824 KB
testcase_15 AC 825 ms
21,696 KB
testcase_16 AC 843 ms
21,796 KB
testcase_17 AC 834 ms
21,696 KB
testcase_18 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect,bisect_left

N,Q=map(int,input().split())
A=list(map(int,input().split()))

SA=sorted(A)

for tests in range(Q):
    x,y=map(int,input().split())

    p=A[x-1]
    q=A[y-1]

    if p<=q:
        print(0)
        continue

    x=bisect(SA,q)
    y=bisect_left(SA,p)

    print(y-x)
0