結果

問題 No.2710 How many more?
ユーザー けんけん
提出日時 2024-11-01 22:03:02
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 618 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 136,068 KB
最終ジャッジ日時 2024-11-01 22:03:12
合計ジャッジ時間 8,240 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,420 KB
testcase_01 AC 42 ms
53,916 KB
testcase_02 AC 388 ms
118,892 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 WA -
testcase_07 AC 124 ms
83,148 KB
testcase_08 AC 168 ms
90,516 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 240 ms
100,272 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 47 ms
54,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10**8)

from collections import defaultdict

N, Q = map(int, input().split())
A = list(map(int, input().split()))
querys = [list(map(int, input().split())) for _ in range(Q)]

info = []

for i in range(N):
    info.append([A[i], i + 1])

allA = sorted(list(set(A)))

cnt = defaultdict(int)

for a in A:
    cnt[a] += 1

s = [0]

for a in allA:
    s.append(s[-1] + cnt[a])

place = defaultdict(int)

info.sort()

for n, e in enumerate(info):
    place[e[-1]] = n + 1

for x, y in querys:
    p1, p2 = place[x], place[y] 
    print(max(0, s[p1 - 1] - s[p2]))
0