結果

問題 No.1708 Quality of Contest
ユーザー Eki1009Eki1009
提出日時 2021-10-15 21:41:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 363 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 134,224 KB
最終ジャッジ日時 2024-09-17 17:20:25
合計ジャッジ時間 7,273 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,840 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 72 ms
76,592 KB
testcase_04 AC 72 ms
76,672 KB
testcase_05 AC 69 ms
76,672 KB
testcase_06 AC 67 ms
74,332 KB
testcase_07 AC 70 ms
74,684 KB
testcase_08 AC 34 ms
51,712 KB
testcase_09 AC 320 ms
134,224 KB
testcase_10 AC 248 ms
123,500 KB
testcase_11 AC 311 ms
125,348 KB
testcase_12 AC 324 ms
118,656 KB
testcase_13 AC 294 ms
122,112 KB
testcase_14 AC 323 ms
119,636 KB
testcase_15 AC 341 ms
128,712 KB
testcase_16 AC 329 ms
128,316 KB
testcase_17 AC 314 ms
128,844 KB
testcase_18 AC 320 ms
129,552 KB
testcase_19 AC 330 ms
121,096 KB
testcase_20 AC 329 ms
128,600 KB
testcase_21 AC 328 ms
124,676 KB
testcase_22 AC 315 ms
119,368 KB
testcase_23 AC 363 ms
129,484 KB
testcase_24 AC 251 ms
130,192 KB
testcase_25 AC 253 ms
129,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,x = map(int,input().split())
L = [[] for _ in range(m+1)]
for _ in range(n):
    a,b = map(int,input().split())
    L[b].append(a)
Z = []
for l in L:
    if not l:
        continue
    l.sort()
    l[-1] += x
    for z in l:
        Z.append(z)
Z.sort(reverse=True)
D = [0]*(n+1)
for i,z in enumerate(Z):
    D[i+1] = D[i]+z
k = int(input())
C = tuple(map(int,input().split()))
ans = 0
for c in C:
    ans += D[c]
print(ans)
0