結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 RE -
testcase_04 AC 45 ms
11,904 KB
testcase_05 AC 44 ms
12,032 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 31 ms
10,496 KB
testcase_09 AC 864 ms
85,468 KB
testcase_10 AC 792 ms
73,484 KB
testcase_11 AC 899 ms
76,988 KB
testcase_12 AC 903 ms
76,960 KB
testcase_13 AC 873 ms
76,324 KB
testcase_14 AC 926 ms
78,548 KB
testcase_15 AC 964 ms
79,644 KB
testcase_16 AC 960 ms
80,848 KB
testcase_17 AC 919 ms
77,512 KB
testcase_18 AC 939 ms
79,084 KB
testcase_19 AC 929 ms
79,860 KB
testcase_20 AC 918 ms
78,700 KB
testcase_21 AC 942 ms
79,564 KB
testcase_22 AC 939 ms
77,440 KB
testcase_23 AC 969 ms
80,840 KB
testcase_24 AC 824 ms
73,468 KB
testcase_25 AC 832 ms
73,392 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=[[] for i in range(N+1)]

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

XX=[]

for i in range(N+1):
    X[i].sort()
    if len(X[i])>0:
        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