結果

問題 No.1708 Quality of Contest
ユーザー lloyzlloyz
提出日時 2021-11-14 13:37:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,347 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 86,164 KB
最終ジャッジ日時 2024-12-20 11:47:29
合計ジャッジ時間 25,234 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 50 ms
12,032 KB
testcase_04 AC 55 ms
12,160 KB
testcase_05 AC 50 ms
12,032 KB
testcase_06 AC 45 ms
11,904 KB
testcase_07 AC 45 ms
11,776 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 1,116 ms
86,164 KB
testcase_10 AC 1,249 ms
70,360 KB
testcase_11 AC 1,270 ms
75,376 KB
testcase_12 AC 1,293 ms
74,820 KB
testcase_13 AC 1,275 ms
74,704 KB
testcase_14 AC 1,296 ms
78,360 KB
testcase_15 AC 1,328 ms
78,524 KB
testcase_16 AC 1,347 ms
79,460 KB
testcase_17 AC 1,273 ms
74,928 KB
testcase_18 AC 1,272 ms
77,048 KB
testcase_19 AC 1,292 ms
77,504 KB
testcase_20 AC 1,306 ms
75,916 KB
testcase_21 AC 1,346 ms
78,820 KB
testcase_22 AC 1,303 ms
77,244 KB
testcase_23 AC 1,335 ms
79,592 KB
testcase_24 AC 1,259 ms
72,340 KB
testcase_25 AC 1,243 ms
72,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, x = map(int, input().split())
AB = [list(map(int, input().split())) for _ in range(n)]
k = int(input())
C = list(map(int, input().split()))

AB.sort(key=lambda x: x[0], reverse=True)
seen = set()
P = []
for i in range(n):
    a, b = AB[i]
    if b not in seen:
        seen.add(b)
        P.append(a + x)
    else:
        P.append(a)
P.sort(reverse=True)
accumP = [0 for _ in range(n + 1)]
for i in range(n):
    accumP[i + 1] = accumP[i] + P[i]
ans = 0
for i in range(k):
    ans += accumP[C[i]]
print(ans)
0