結果

問題 No.1708 Quality of Contest
ユーザー chineristACchineristAC
提出日時 2020-09-12 22:00:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 139,244 KB
最終ジャッジ日時 2024-09-17 16:50:19
合計ジャッジ時間 7,992 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,496 KB
testcase_01 AC 39 ms
53,664 KB
testcase_02 AC 37 ms
52,304 KB
testcase_03 AC 57 ms
68,988 KB
testcase_04 AC 55 ms
67,960 KB
testcase_05 AC 56 ms
69,564 KB
testcase_06 AC 55 ms
68,416 KB
testcase_07 AC 56 ms
69,240 KB
testcase_08 AC 37 ms
53,008 KB
testcase_09 AC 283 ms
132,956 KB
testcase_10 AC 200 ms
118,388 KB
testcase_11 AC 276 ms
122,724 KB
testcase_12 AC 292 ms
125,500 KB
testcase_13 AC 255 ms
111,724 KB
testcase_14 AC 296 ms
127,468 KB
testcase_15 AC 328 ms
139,244 KB
testcase_16 AC 326 ms
138,704 KB
testcase_17 AC 298 ms
131,220 KB
testcase_18 AC 303 ms
132,380 KB
testcase_19 AC 302 ms
134,096 KB
testcase_20 AC 286 ms
129,936 KB
testcase_21 AC 310 ms
132,784 KB
testcase_22 AC 296 ms
128,876 KB
testcase_23 AC 330 ms
139,188 KB
testcase_24 AC 202 ms
123,848 KB
testcase_25 AC 203 ms
124,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline

N,M,X = map(int,input().split())
Genre = [[] for i in range(M)]
for _ in range(N):
    v,g = map(int,input().split())
    Genre[g-1].append(v)

K = int(input())
p = list(map(int,input().split()))

problem = []
for i in range(M):
    if Genre[i]:
        Genre[i].sort(reverse=True)
        Genre[i][0] += X
        problem += Genre[i]

problem.sort(reverse=True)
problem = [0] + problem
for i in range(1,N+1):
    problem[i] += problem[i-1]

ans = 0
for AC in p:
    ans += problem[AC]

print(ans)
0