結果

問題 No.2710 How many more?
ユーザー prd_xxxprd_xxx
提出日時 2024-03-31 15:46:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 585 ms / 2,000 ms
コード長 479 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 108,968 KB
最終ジャッジ日時 2024-09-30 20:55:25
合計ジャッジ時間 8,536 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,868 KB
testcase_01 AC 43 ms
54,400 KB
testcase_02 AC 427 ms
98,280 KB
testcase_03 AC 366 ms
95,192 KB
testcase_04 AC 422 ms
100,060 KB
testcase_05 AC 283 ms
89,140 KB
testcase_06 AC 373 ms
96,444 KB
testcase_07 AC 190 ms
82,628 KB
testcase_08 AC 213 ms
83,940 KB
testcase_09 AC 450 ms
100,288 KB
testcase_10 AC 299 ms
89,432 KB
testcase_11 AC 328 ms
89,772 KB
testcase_12 AC 545 ms
104,704 KB
testcase_13 AC 585 ms
108,456 KB
testcase_14 AC 581 ms
108,708 KB
testcase_15 AC 577 ms
108,200 KB
testcase_16 AC 583 ms
108,072 KB
testcase_17 AC 585 ms
108,968 KB
testcase_18 AC 42 ms
55,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N,Q = map(int,input().split())
A = list(map(int,input().split()))
XY = [tuple(map(int,input().split())) for _ in range(Q)]

from collections import Counter
C = Counter(A)
sc = sorted(C.items())
cums = [0]
ks = []
for k,v in sc:
    cums.append(cums[-1] + v)
    ks.append(k)

from bisect import bisect
for x,y in XY:
    x,y = x-1,y-1
    a = A[x]
    b = A[y]
    i = bisect(ks,a)-1
    j = bisect(ks,b)
    print(max(0, cums[i] - cums[j]))
0