結果

問題 No.1708 Quality of Contest
ユーザー roarisroaris
提出日時 2021-10-17 20:27:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 146,432 KB
最終ジャッジ日時 2024-09-17 19:46:04
合計ジャッジ時間 5,613 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,644 KB
testcase_01 AC 35 ms
55,152 KB
testcase_02 AC 37 ms
54,008 KB
testcase_03 AC 50 ms
69,880 KB
testcase_04 AC 50 ms
69,528 KB
testcase_05 AC 51 ms
70,116 KB
testcase_06 AC 48 ms
69,496 KB
testcase_07 AC 48 ms
68,096 KB
testcase_08 AC 34 ms
53,504 KB
testcase_09 AC 205 ms
140,792 KB
testcase_10 AC 167 ms
126,108 KB
testcase_11 AC 220 ms
136,084 KB
testcase_12 AC 237 ms
141,668 KB
testcase_13 AC 212 ms
128,676 KB
testcase_14 AC 249 ms
145,416 KB
testcase_15 AC 233 ms
137,428 KB
testcase_16 AC 238 ms
139,028 KB
testcase_17 AC 221 ms
140,760 KB
testcase_18 AC 231 ms
143,016 KB
testcase_19 AC 237 ms
146,432 KB
testcase_20 AC 230 ms
139,092 KB
testcase_21 AC 238 ms
138,580 KB
testcase_22 AC 235 ms
136,892 KB
testcase_23 AC 241 ms
138,200 KB
testcase_24 AC 183 ms
114,708 KB
testcase_25 AC 177 ms
115,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

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

for _ in range(N):
    A, B = map(int, input().split())
    d[B].append(A)

l = []

for k in d:
    d[k].sort()
    d[k][-1] += X
    l += d[k]

l.sort(reverse=True)
acc = [0]

for li in l:
    acc.append(acc[-1]+li)

K = int(input())
C = list(map(int, input().split()))
ans = 0

for Ci in C:
    ans += acc[Ci]

print(ans)
0