結果

問題 No.1708 Quality of Contest
ユーザー 👑 rin204rin204
提出日時 2022-01-18 02:36:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 345 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 148,780 KB
最終ジャッジ日時 2024-05-02 19:12:19
合計ジャッジ時間 8,493 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 71 ms
74,872 KB
testcase_04 AC 68 ms
74,752 KB
testcase_05 AC 71 ms
76,840 KB
testcase_06 AC 64 ms
73,472 KB
testcase_07 AC 68 ms
74,184 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 296 ms
133,132 KB
testcase_10 AC 251 ms
122,524 KB
testcase_11 AC 291 ms
139,208 KB
testcase_12 AC 308 ms
135,972 KB
testcase_13 AC 288 ms
131,988 KB
testcase_14 AC 307 ms
133,632 KB
testcase_15 AC 335 ms
125,440 KB
testcase_16 AC 324 ms
125,568 KB
testcase_17 AC 297 ms
146,816 KB
testcase_18 AC 314 ms
148,780 KB
testcase_19 AC 324 ms
142,976 KB
testcase_20 AC 301 ms
145,420 KB
testcase_21 AC 317 ms
129,672 KB
testcase_22 AC 322 ms
133,716 KB
testcase_23 AC 345 ms
125,412 KB
testcase_24 AC 245 ms
137,788 KB
testcase_25 AC 253 ms
138,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, x = map(int, input().split())
P = [[] for _ in range(m)]
for _ in range(n):
    a, b = map(int, input().split())
    b -= 1
    P[b].append(a)
lst = []
for p in P:
    if not p:
        continue
    p.sort(reverse = True)
    p[0] += x
    lst += p
    
lst.sort(reverse = True)
cum = [0]
for l in lst:
    cum.append(cum[-1] + l)
    
k = int(input())
C = list(map(int, input().split()))
print(sum(cum[c] for c in C))
0