結果

問題 No.1708 Quality of Contest
ユーザー chineristACchineristAC
提出日時 2020-09-13 01:59:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 740 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 59,120 KB
最終ジャッジ日時 2024-09-17 16:51:41
合計ジャッジ時間 12,558 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 41 ms
11,648 KB
testcase_04 AC 39 ms
11,520 KB
testcase_05 AC 35 ms
11,520 KB
testcase_06 AC 34 ms
11,392 KB
testcase_07 AC 33 ms
11,264 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 669 ms
59,120 KB
testcase_10 AC 561 ms
52,980 KB
testcase_11 AC 566 ms
43,548 KB
testcase_12 AC 594 ms
45,912 KB
testcase_13 AC 552 ms
41,824 KB
testcase_14 AC 684 ms
47,176 KB
testcase_15 AC 733 ms
55,420 KB
testcase_16 AC 740 ms
54,468 KB
testcase_17 AC 610 ms
48,556 KB
testcase_18 AC 612 ms
49,384 KB
testcase_19 AC 657 ms
51,336 KB
testcase_20 AC 606 ms
49,488 KB
testcase_21 AC 712 ms
49,648 KB
testcase_22 AC 666 ms
47,392 KB
testcase_23 AC 732 ms
54,748 KB
testcase_24 AC 484 ms
39,484 KB
testcase_25 AC 488 ms
39,432 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