結果

問題 No.1708 Quality of Contest
ユーザー ああいいああいい
提出日時 2022-05-18 09:25:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 359 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 145,940 KB
最終ジャッジ日時 2024-09-16 10:05:44
合計ジャッジ時間 8,969 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,X = map(int,input().split())

from collections import defaultdict
d = defaultdict(list)
for _ in range(N):
    a,b = map(int,input().split())
    d[b].append(a)
K = int(input())
c = list(map(int,input().split()))

u = []
for b in d:
    l = d[b]
    l.sort()
    l[-1] += X
    for i in l:
        u.append(i)
u.sort(reverse = True)
for i in range(len(u) - 1):
    u[i + 1] += u[i]
ans = 0
for i in c:
    if i == 0:continue
    ans += u[i-1]
print(ans)
0