結果

問題 No.1708 Quality of Contest
ユーザー FromBooskaFromBooska
提出日時 2024-03-18 13:13:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 344 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 157,512 KB
最終ジャッジ日時 2024-09-30 04:54:28
合計ジャッジ時間 8,728 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,792 KB
testcase_01 AC 41 ms
53,788 KB
testcase_02 AC 42 ms
53,940 KB
testcase_03 AC 82 ms
77,264 KB
testcase_04 AC 82 ms
77,268 KB
testcase_05 AC 79 ms
77,176 KB
testcase_06 AC 77 ms
77,140 KB
testcase_07 AC 78 ms
77,240 KB
testcase_08 AC 39 ms
54,628 KB
testcase_09 AC 299 ms
157,512 KB
testcase_10 AC 238 ms
115,688 KB
testcase_11 AC 319 ms
138,112 KB
testcase_12 AC 341 ms
135,540 KB
testcase_13 AC 318 ms
139,428 KB
testcase_14 AC 339 ms
132,252 KB
testcase_15 AC 338 ms
134,360 KB
testcase_16 AC 344 ms
133,132 KB
testcase_17 AC 324 ms
153,972 KB
testcase_18 AC 328 ms
146,912 KB
testcase_19 AC 342 ms
145,784 KB
testcase_20 AC 323 ms
152,744 KB
testcase_21 AC 336 ms
126,268 KB
testcase_22 AC 323 ms
131,892 KB
testcase_23 AC 338 ms
133,636 KB
testcase_24 AC 264 ms
141,708 KB
testcase_25 AC 266 ms
140,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ジャンルごとに降順ソートして1番にX点加算して全ソート

from collections import defaultdict

N, M, X = map(int, input().split())
dic = defaultdict(list)
for i in range(N):
    a, b = map(int, input().split())
    dic[b].append(a)

all_problems = []
for b in dic:
    dic[b].sort(reverse = True)
    dic[b][0] += X
    all_problems.extend(dic[b])

all_problems.sort(reverse = True)
#print(all_problems)

cumu = [0]
temp = 0
for i in range(N):
    temp += all_problems[i]
    cumu.append(temp)

#print(cumu)

K = int(input())
C = list(map(int, input().split()))
ans = 0
for c in C:
    ans += cumu[c]
print(ans)
0