結果

問題 No.1708 Quality of Contest
ユーザー qibqib
提出日時 2023-05-02 19:11:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 141,880 KB
最終ジャッジ日時 2024-05-01 06:09:49
合計ジャッジ時間 8,948 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,688 KB
testcase_01 AC 33 ms
53,160 KB
testcase_02 AC 35 ms
52,648 KB
testcase_03 AC 87 ms
77,236 KB
testcase_04 AC 72 ms
77,208 KB
testcase_05 AC 75 ms
77,104 KB
testcase_06 AC 68 ms
74,416 KB
testcase_07 AC 72 ms
75,468 KB
testcase_08 AC 35 ms
52,812 KB
testcase_09 AC 269 ms
141,880 KB
testcase_10 AC 246 ms
113,232 KB
testcase_11 AC 318 ms
138,728 KB
testcase_12 AC 331 ms
137,084 KB
testcase_13 AC 315 ms
129,372 KB
testcase_14 AC 330 ms
131,784 KB
testcase_15 AC 336 ms
132,848 KB
testcase_16 AC 342 ms
133,708 KB
testcase_17 AC 314 ms
140,652 KB
testcase_18 AC 329 ms
139,380 KB
testcase_19 AC 342 ms
138,684 KB
testcase_20 AC 320 ms
140,332 KB
testcase_21 AC 334 ms
131,372 KB
testcase_22 AC 346 ms
132,316 KB
testcase_23 AC 334 ms
133,492 KB
testcase_24 AC 259 ms
131,308 KB
testcase_25 AC 259 ms
130,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, x = map(int, input().split())

problems = {}
for _ in range(n):
  a, b = map(int, input().split())
  if problems.get(b, None) is None:
    problems[b] = []

  problems[b].append(a)

k = int(input())
c = list(map(int, input().split()))

q = []
for _, vs in problems.items():
  vs.sort()
  q.append(vs.pop() + x)
  for v in vs:
    q.append(v)

q.sort(reverse=True)

score = [0 for _ in range(n + 1)]
for i in range(n):
  score[i + 1] = score[i] + q[i]

ans = 0
for i in range(k):
  ans += score[c[i]]

print(ans)
0