結果

問題 No.1708 Quality of Contest
ユーザー tassei903tassei903
提出日時 2021-10-15 21:46:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 427 ms / 2,000 ms
コード長 805 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 162,008 KB
最終ジャッジ日時 2024-09-17 17:23:44
合計ジャッジ時間 8,193 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,268 KB
testcase_01 AC 38 ms
52,792 KB
testcase_02 AC 39 ms
53,032 KB
testcase_03 AC 75 ms
76,624 KB
testcase_04 AC 74 ms
76,584 KB
testcase_05 AC 76 ms
76,660 KB
testcase_06 AC 69 ms
75,052 KB
testcase_07 AC 74 ms
76,804 KB
testcase_08 AC 37 ms
53,024 KB
testcase_09 AC 388 ms
162,008 KB
testcase_10 AC 256 ms
147,536 KB
testcase_11 AC 335 ms
125,936 KB
testcase_12 AC 369 ms
132,376 KB
testcase_13 AC 313 ms
141,448 KB
testcase_14 AC 392 ms
129,180 KB
testcase_15 AC 427 ms
156,724 KB
testcase_16 AC 413 ms
152,592 KB
testcase_17 AC 361 ms
147,812 KB
testcase_18 AC 363 ms
148,148 KB
testcase_19 AC 387 ms
141,360 KB
testcase_20 AC 349 ms
131,540 KB
testcase_21 AC 391 ms
139,008 KB
testcase_22 AC 382 ms
129,072 KB
testcase_23 AC 419 ms
141,800 KB
testcase_24 AC 253 ms
143,780 KB
testcase_25 AC 250 ms
143,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n,m,x = na()
g = [[] for i in range(m)]
for i in range(n):
    a,b = na()
    b-=1
    g[b].append(a)
p = []
for b in range(m):
    g[b] = sorted(g[b])[::-1]
    if len(g[b])>=1:
        p.append(g[b][0]+x)
        for j in range(1,len(g[b])):
            p.append(g[b][j])
p = sorted(p)[::-1]
s = [0]
for i in range(n):
    s.append(p[i]+s[-1])

ans = 0
k = ni()
C = na()
for i in range(k):
    ans += s[C[i]]
print(ans)
0