結果

問題 No.1708 Quality of Contest
ユーザー titiatitia
提出日時 2021-10-16 01:49:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 974 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 600 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 91,196 KB
最終ジャッジ日時 2024-09-17 19:15:14
合計ジャッジ時間 16,800 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 42 ms
11,776 KB
testcase_04 AC 45 ms
12,032 KB
testcase_05 AC 43 ms
11,776 KB
testcase_06 AC 41 ms
11,648 KB
testcase_07 AC 40 ms
11,776 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 788 ms
91,196 KB
testcase_10 AC 683 ms
59,056 KB
testcase_11 AC 862 ms
70,240 KB
testcase_12 AC 894 ms
71,824 KB
testcase_13 AC 832 ms
66,000 KB
testcase_14 AC 906 ms
73,820 KB
testcase_15 AC 974 ms
79,264 KB
testcase_16 AC 959 ms
78,844 KB
testcase_17 AC 857 ms
70,104 KB
testcase_18 AC 867 ms
71,812 KB
testcase_19 AC 921 ms
76,292 KB
testcase_20 AC 861 ms
71,116 KB
testcase_21 AC 951 ms
76,936 KB
testcase_22 AC 916 ms
75,380 KB
testcase_23 AC 971 ms
80,096 KB
testcase_24 AC 693 ms
59,440 KB
testcase_25 AC 708 ms
59,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M,p=map(int,input().split())
P=[tuple(map(int,input().split())) for i in range(N)]
K=int(input())
C=list(map(int,input().split()))

X=dict()

for a,b in P:
    if b in X:
        X[b].append(a)
    else:
        X[b]=[a]

XX=[]

for i in X:
    X[i].sort()
    X[i][-1]+=p
    XX+=X[i]

XX.sort(reverse=True)

S=[0]
for xx in XX:
    S.append(S[-1]+xx)

ANS=0

for c in C:
    ANS+=S[c]

print(ANS)
0