結果

問題 No.2710 How many more?
ユーザー RYOH2718RYOH2718
提出日時 2024-03-31 15:08:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 479 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 91,928 KB
最終ジャッジ日時 2024-09-30 20:18:08
合計ジャッジ時間 7,056 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 391 ms
84,408 KB
testcase_03 AC 275 ms
84,480 KB
testcase_04 AC 222 ms
91,292 KB
testcase_05 AC 210 ms
82,556 KB
testcase_06 AC 208 ms
87,936 KB
testcase_07 AC 253 ms
77,588 KB
testcase_08 AC 210 ms
78,540 KB
testcase_09 AC 345 ms
88,092 KB
testcase_10 AC 245 ms
82,304 KB
testcase_11 AC 350 ms
80,348 KB
testcase_12 AC 426 ms
89,636 KB
testcase_13 AC 437 ms
91,308 KB
testcase_14 AC 459 ms
91,896 KB
testcase_15 AC 427 ms
91,928 KB
testcase_16 AC 439 ms
91,712 KB
testcase_17 AC 479 ms
91,648 KB
testcase_18 AC 44 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 標準入力された値を整数に変換する
def INT():
    return int(input())


# 標準入力された複数の値を整数に変換する
def MI():
    return map(int, input().split())


# 標準入力された複数の値を整数のリストに変換する
def LI():
    return list(map(int, input().split()))


from bisect import bisect_left, bisect_right

N, Q = MI()
A = LI()
As = sorted(A)

for i in range(Q):
    x, y = MI()
    x -= 1
    y -= 1
    ans = max(bisect_left(As, A[x]) - bisect_right(As, A[y]), 0)
    print(ans)
0