結果

問題 No.2710 How many more?
ユーザー navel_tosnavel_tos
提出日時 2024-03-31 16:42:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 397 ms / 2,000 ms
コード長 566 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 114,552 KB
最終ジャッジ日時 2024-09-30 21:06:58
合計ジャッジ時間 6,550 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,864 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 AC 327 ms
105,468 KB
testcase_03 AC 247 ms
105,732 KB
testcase_04 AC 218 ms
111,616 KB
testcase_05 AC 181 ms
98,940 KB
testcase_06 AC 224 ms
114,552 KB
testcase_07 AC 189 ms
77,824 KB
testcase_08 AC 174 ms
83,840 KB
testcase_09 AC 311 ms
114,520 KB
testcase_10 AC 210 ms
94,208 KB
testcase_11 AC 273 ms
89,456 KB
testcase_12 AC 369 ms
110,328 KB
testcase_13 AC 396 ms
109,860 KB
testcase_14 AC 397 ms
109,696 KB
testcase_15 AC 385 ms
109,696 KB
testcase_16 AC 386 ms
110,080 KB
testcase_17 AC 394 ms
109,804 KB
testcase_18 AC 37 ms
52,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#MMA Contest 018 E

from bisect import bisect_left as bL, bisect_right as bR

N, Q = map(int, input().split())
A = list(map(int, input().split()))
D = dict()
for a in A:
    if a not in D:
        D[a] = 0
    D[a] += 1
K = sorted( D.keys() )
B = [D[k] for k in K]
C = [0] * (len(B) + 1)
for i in range(len(B)):
    C[i + 1] = C[i] + B[i]
del D
D = {j: i for i, j in enumerate(K)}

for _ in range(Q):
    x, y = map(lambda x: int(x) - 1, input().split())
    Ax, Ay = D[ A[x] ], D[ A[y] ]
    if Ay >= Ax:
        print(0)
    else:
        print(C[Ax] - C[Ay + 1])
0