結果

問題 No.1708 Quality of Contest
ユーザー flippergoflippergo
提出日時 2024-10-26 16:45:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 536 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 514 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 152,940 KB
最終ジャッジ日時 2024-10-26 16:45:41
合計ジャッジ時間 11,977 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,368 KB
testcase_01 AC 36 ms
52,896 KB
testcase_02 AC 37 ms
53,220 KB
testcase_03 AC 86 ms
76,872 KB
testcase_04 AC 85 ms
76,948 KB
testcase_05 AC 83 ms
76,996 KB
testcase_06 AC 85 ms
76,816 KB
testcase_07 AC 84 ms
76,596 KB
testcase_08 AC 38 ms
52,984 KB
testcase_09 AC 506 ms
152,544 KB
testcase_10 AC 307 ms
135,320 KB
testcase_11 AC 411 ms
124,284 KB
testcase_12 AC 461 ms
131,160 KB
testcase_13 AC 387 ms
137,584 KB
testcase_14 AC 451 ms
147,556 KB
testcase_15 AC 536 ms
140,888 KB
testcase_16 AC 506 ms
143,276 KB
testcase_17 AC 478 ms
134,060 KB
testcase_18 AC 456 ms
135,664 KB
testcase_19 AC 477 ms
152,940 KB
testcase_20 AC 455 ms
133,760 KB
testcase_21 AC 492 ms
150,864 KB
testcase_22 AC 453 ms
147,616 KB
testcase_23 AC 532 ms
144,200 KB
testcase_24 AC 291 ms
134,236 KB
testcase_25 AC 289 ms
135,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,X = map(int,input().split())
C = {i:[] for i in range(1,M+1)}
for _ in range(N):
    a,b = map(int,input().split())
    C[b].append(a)
for b in C:
    C[b] = sorted(C[b])
    if len(C[b])>0:
        C[b][-1] = C[b][-1]+X
A = []
for b in C:
    A += C[b]
A = [0]+sorted(A,reverse=True)
B = [0]*(N+1)
for i in range(1,N+1):
    B[i] = B[i-1]+A[i]
K = int(input())
D = list(map(int,input().split()))
ans = 0
for i in range(K):
    ans += B[D[i]]
print(ans)
0