結果

問題 No.1708 Quality of Contest
ユーザー tcltktcltk
提出日時 2021-10-16 18:48:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 785 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 158,516 KB
最終ジャッジ日時 2024-09-17 19:30:24
合計ジャッジ時間 8,295 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
86,560 KB
testcase_01 AC 114 ms
86,556 KB
testcase_02 AC 111 ms
86,628 KB
testcase_03 AC 133 ms
89,408 KB
testcase_04 AC 128 ms
89,484 KB
testcase_05 AC 128 ms
89,640 KB
testcase_06 AC 128 ms
89,372 KB
testcase_07 AC 130 ms
89,312 KB
testcase_08 AC 106 ms
86,544 KB
testcase_09 AC 312 ms
157,596 KB
testcase_10 AC 262 ms
147,588 KB
testcase_11 AC 321 ms
150,088 KB
testcase_12 AC 328 ms
140,556 KB
testcase_13 AC 307 ms
144,632 KB
testcase_14 AC 323 ms
139,000 KB
testcase_15 AC 345 ms
151,396 KB
testcase_16 AC 348 ms
149,716 KB
testcase_17 AC 324 ms
157,552 KB
testcase_18 AC 333 ms
155,444 KB
testcase_19 AC 331 ms
148,328 KB
testcase_20 AC 330 ms
158,516 KB
testcase_21 AC 348 ms
143,636 KB
testcase_22 AC 332 ms
139,112 KB
testcase_23 AC 346 ms
150,752 KB
testcase_24 AC 258 ms
147,996 KB
testcase_25 AC 259 ms
148,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)

INF = 10**20


N, M, X = map(int, input().split())
Problem = [list() for _ in range(M)]
for _ in range(N):
    a, b = map(int, input().split())
    b -= 1
    Problem[b].append(a)
A = []
for b in range(M):
    Problem[b].sort(reverse=True)
    if Problem[b]:
        Problem[b][0] += X
    A += Problem[b]
K = int(input())
C = list(map(int, input().split()))

A.sort(reverse=True)
S = [0] + list(itertools.accumulate(A))

ans = 0
for c in C:
    ans += S[c]
print(ans)
0