結果

問題 No.1708 Quality of Contest
ユーザー 👑 KazunKazun
提出日時 2021-10-15 21:59:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 665 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 131,680 KB
最終ジャッジ日時 2024-09-17 17:29:17
合計ジャッジ時間 5,480 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 30 ms
51,824 KB
testcase_02 AC 30 ms
52,096 KB
testcase_03 AC 50 ms
68,096 KB
testcase_04 AC 51 ms
68,352 KB
testcase_05 AC 48 ms
68,736 KB
testcase_06 AC 49 ms
67,712 KB
testcase_07 AC 49 ms
67,328 KB
testcase_08 AC 31 ms
51,968 KB
testcase_09 AC 216 ms
127,552 KB
testcase_10 AC 177 ms
115,932 KB
testcase_11 AC 206 ms
119,664 KB
testcase_12 AC 210 ms
123,748 KB
testcase_13 AC 198 ms
114,992 KB
testcase_14 AC 216 ms
127,064 KB
testcase_15 AC 254 ms
126,716 KB
testcase_16 AC 258 ms
127,872 KB
testcase_17 AC 213 ms
122,332 KB
testcase_18 AC 217 ms
124,856 KB
testcase_19 AC 233 ms
129,296 KB
testcase_20 AC 215 ms
121,724 KB
testcase_21 AC 224 ms
131,680 KB
testcase_22 AC 217 ms
126,536 KB
testcase_23 AC 249 ms
128,264 KB
testcase_24 AC 171 ms
114,796 KB
testcase_25 AC 176 ms
114,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline

N,M,X=map(int,input().split())

Q=[[] for _ in range(M+1)]
for _ in range(N):
    a,b=map(int,input().split())
    Q[b].append(a)

R=[]
for q in Q:
    q.sort(reverse=True)

    if q:
        q[0]+=X
    R+=q
R.sort(reverse=True)

K=int(input())
C=list(map(int,input().split()))

D=[0]*(N+1)
for c in C:
    D[c]+=1

for i in range(N-1,-1,-1):
    D[i]+=D[i+1]

Ans=0
for i in range(N):
    Ans+=D[i+1]*R[i]

print(Ans)
0