結果

問題 No.1708 Quality of Contest
ユーザー lllllll88938494lllllll88938494
提出日時 2022-06-04 05:49:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,028 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 142,604 KB
最終ジャッジ日時 2024-09-21 03:35:23
合計ジャッジ時間 19,567 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,456 KB
testcase_01 AC 41 ms
52,612 KB
testcase_02 AC 37 ms
53,556 KB
testcase_03 AC 79 ms
77,164 KB
testcase_04 AC 79 ms
77,080 KB
testcase_05 AC 78 ms
77,272 KB
testcase_06 AC 75 ms
76,624 KB
testcase_07 AC 76 ms
76,696 KB
testcase_08 AC 35 ms
53,268 KB
testcase_09 AC 969 ms
142,604 KB
testcase_10 AC 813 ms
122,348 KB
testcase_11 AC 992 ms
122,212 KB
testcase_12 AC 968 ms
122,300 KB
testcase_13 AC 992 ms
122,184 KB
testcase_14 AC 987 ms
124,464 KB
testcase_15 AC 857 ms
129,788 KB
testcase_16 AC 988 ms
129,500 KB
testcase_17 AC 931 ms
122,848 KB
testcase_18 AC 932 ms
123,700 KB
testcase_19 AC 914 ms
125,384 KB
testcase_20 AC 944 ms
123,692 KB
testcase_21 AC 1,005 ms
126,012 KB
testcase_22 AC 978 ms
124,992 KB
testcase_23 AC 1,028 ms
129,524 KB
testcase_24 AC 835 ms
120,868 KB
testcase_25 AC 849 ms
121,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,x=map(int,input().split())
ns=[list(map(int,input().split())) for i in range(n)]
k=int(input())
c=list(map(int,input().split()))
ns.sort(reverse=True)
now=-1
s=set()
for i in range(n):
    if ns[i][1] not in s:
        ns[i][0]+=x
        s.add(ns[i][1])
ns.sort(reverse=True)
for i in range(n-1):
    ns[i+1][0]+=ns[i][0]
ans=0    
for i in range(k):
    if c[i] == 0: continue
    ans+= ns[c[i]-1][0]
print(ans)
    

0