結果

問題 No.1708 Quality of Contest
ユーザー shinichishinichi
提出日時 2021-10-16 01:08:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 537 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 149,716 KB
最終ジャッジ日時 2024-09-17 19:11:48
合計ジャッジ時間 7,294 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,920 KB
testcase_01 WA -
testcase_02 AC 38 ms
54,568 KB
testcase_03 AC 74 ms
77,108 KB
testcase_04 AC 78 ms
77,312 KB
testcase_05 AC 79 ms
77,376 KB
testcase_06 AC 73 ms
76,988 KB
testcase_07 AC 77 ms
77,400 KB
testcase_08 AC 35 ms
55,108 KB
testcase_09 AC 264 ms
149,716 KB
testcase_10 AC 240 ms
118,124 KB
testcase_11 AC 322 ms
133,836 KB
testcase_12 AC 327 ms
140,356 KB
testcase_13 AC 309 ms
116,492 KB
testcase_14 AC 353 ms
133,140 KB
testcase_15 AC 321 ms
134,524 KB
testcase_16 AC 338 ms
133,680 KB
testcase_17 AC 376 ms
139,256 KB
testcase_18 AC 327 ms
141,476 KB
testcase_19 AC 324 ms
137,752 KB
testcase_20 AC 314 ms
140,428 KB
testcase_21 AC 323 ms
126,700 KB
testcase_22 AC 317 ms
134,564 KB
testcase_23 AC 317 ms
134,460 KB
testcase_24 AC 261 ms
131,820 KB
testcase_25 AC 257 ms
131,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from itertools import accumulate



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

for k, v in dic.items():
    values = sorted(v, reverse=True)
    data.append(values[0]+X)
    for i in range(1, len(values)):
        data.append(values[i])
data.sort(reverse=True)
data = list(accumulate(data))
K = int(input())
C = list(map(int, input().split()))

ans = 0
for c in C:
    ans += data[c-1]
print(ans)
0