結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,772 KB
testcase_01 AC 37 ms
52,664 KB
testcase_02 AC 37 ms
52,412 KB
testcase_03 AC 79 ms
77,120 KB
testcase_04 AC 81 ms
76,868 KB
testcase_05 AC 82 ms
76,772 KB
testcase_06 AC 73 ms
74,360 KB
testcase_07 AC 76 ms
75,044 KB
testcase_08 AC 36 ms
53,356 KB
testcase_09 AC 294 ms
141,616 KB
testcase_10 AC 255 ms
113,236 KB
testcase_11 AC 338 ms
139,064 KB
testcase_12 AC 345 ms
135,796 KB
testcase_13 AC 321 ms
129,056 KB
testcase_14 AC 341 ms
131,800 KB
testcase_15 AC 352 ms
132,644 KB
testcase_16 AC 350 ms
133,576 KB
testcase_17 AC 339 ms
140,552 KB
testcase_18 AC 343 ms
139,392 KB
testcase_19 AC 339 ms
138,424 KB
testcase_20 AC 336 ms
140,332 KB
testcase_21 AC 350 ms
131,496 KB
testcase_22 AC 341 ms
131,944 KB
testcase_23 AC 351 ms
133,368 KB
testcase_24 AC 271 ms
131,012 KB
testcase_25 AC 270 ms
131,008 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