結果

問題 No.2710 How many more?
ユーザー miya145592miya145592
提出日時 2024-03-31 14:48:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 127,780 KB
最終ジャッジ日時 2024-09-30 19:58:59
合計ジャッジ時間 4,679 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,552 KB
testcase_01 AC 40 ms
54,612 KB
testcase_02 AC 198 ms
104,400 KB
testcase_03 AC 167 ms
99,060 KB
testcase_04 AC 188 ms
116,196 KB
testcase_05 AC 130 ms
92,620 KB
testcase_06 AC 161 ms
100,636 KB
testcase_07 AC 105 ms
82,756 KB
testcase_08 AC 108 ms
85,136 KB
testcase_09 AC 204 ms
116,036 KB
testcase_10 AC 141 ms
96,256 KB
testcase_11 AC 159 ms
96,044 KB
testcase_12 AC 246 ms
122,760 KB
testcase_13 AC 262 ms
127,680 KB
testcase_14 AC 255 ms
127,556 KB
testcase_15 AC 259 ms
127,780 KB
testcase_16 AC 254 ms
127,540 KB
testcase_17 AC 265 ms
127,688 KB
testcase_18 AC 42 ms
55,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
input = sys.stdin.readline
N, Q = map(int, input().split())
A = list(map(int, input().split()))
XY = [list(map(int, input().split())) for _ in range(Q)]
B = defaultdict(int)
for i, a in enumerate(A):
    B[a] += 1
P = list(B.keys())
P.sort(reverse=True)
Z = dict()
S = [0]
for i in range(len(P)):
    p = P[i]
    Z[p] = i
    S.append(S[-1]+B[p])
for x, y in XY:
    x-=1
    y-=1
    xi = Z[A[x]]
    yi = Z[A[y]]
    ans = max(0, S[yi]-S[xi+1])
    print(ans)
0