結果

問題 No.2710 How many more?
ユーザー timitimi
提出日時 2024-03-31 14:26:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 127,256 KB
最終ジャッジ日時 2024-09-30 19:31:45
合計ジャッジ時間 6,665 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,536 KB
testcase_01 AC 36 ms
52,904 KB
testcase_02 AC 351 ms
117,980 KB
testcase_03 AC 267 ms
118,280 KB
testcase_04 AC 247 ms
127,256 KB
testcase_05 AC 193 ms
108,252 KB
testcase_06 AC 235 ms
126,048 KB
testcase_07 AC 194 ms
77,756 KB
testcase_08 AC 170 ms
86,128 KB
testcase_09 AC 371 ms
125,944 KB
testcase_10 AC 217 ms
101,540 KB
testcase_11 AC 278 ms
94,804 KB
testcase_12 AC 388 ms
124,624 KB
testcase_13 AC 429 ms
124,120 KB
testcase_14 AC 500 ms
124,184 KB
testcase_15 AC 447 ms
123,856 KB
testcase_16 AC 430 ms
124,124 KB
testcase_17 AC 471 ms
124,088 KB
testcase_18 AC 36 ms
53,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int, input().split())
A=list(map(int, input().split()))
E={}
for a in A:
  if a not in E:
    E[a]=0
  E[a]+=1
  
B=sorted(list(set(A)))
D={}
for i in range(len(B)):
  D[B[i]]=i+1

F=[0]
for b in B:
  F.append(F[-1])
  F[-1]+=E[b]

for i in range(Q):
  p,q=map(int, input().split())
  p-=1;q-=1
  p,q=F[D[A[p]]-1],F[D[A[q]]]
  print(max(0,p-q))
  
  
0