結果

問題 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  
実行時間 926 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,832 KB
最終ジャッジ日時 2024-04-28 03:54:26
合計ジャッジ時間 11,297 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 810 ms
17,356 KB
testcase_03 AC 422 ms
17,728 KB
testcase_04 AC 270 ms
20,932 KB
testcase_05 AC 239 ms
15,804 KB
testcase_06 AC 248 ms
19,492 KB
testcase_07 AC 355 ms
11,520 KB
testcase_08 AC 265 ms
13,312 KB
testcase_09 AC 661 ms
19,084 KB
testcase_10 AC 372 ms
15,256 KB
testcase_11 AC 655 ms
14,576 KB
testcase_12 AC 844 ms
20,772 KB
testcase_13 AC 926 ms
21,832 KB
testcase_14 AC 917 ms
21,824 KB
testcase_15 AC 909 ms
21,824 KB
testcase_16 AC 888 ms
21,824 KB
testcase_17 AC 911 ms
21,824 KB
testcase_18 AC 29 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