結果

問題 No.1708 Quality of Contest
ユーザー mahiro72mahiro72
提出日時 2021-10-15 22:37:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,216 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 92,488 KB
最終ジャッジ日時 2024-09-17 17:46:23
合計ジャッジ時間 19,755 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 43 ms
12,160 KB
testcase_04 AC 50 ms
12,032 KB
testcase_05 AC 44 ms
11,904 KB
testcase_06 AC 43 ms
11,904 KB
testcase_07 AC 43 ms
11,904 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 1,124 ms
92,488 KB
testcase_10 AC 1,004 ms
80,452 KB
testcase_11 AC 985 ms
62,816 KB
testcase_12 AC 1,020 ms
64,676 KB
testcase_13 AC 917 ms
57,692 KB
testcase_14 AC 1,060 ms
69,280 KB
testcase_15 AC 1,216 ms
86,088 KB
testcase_16 AC 1,188 ms
86,468 KB
testcase_17 AC 1,210 ms
70,816 KB
testcase_18 AC 1,128 ms
73,252 KB
testcase_19 AC 1,098 ms
74,916 KB
testcase_20 AC 1,118 ms
71,712 KB
testcase_21 AC 1,066 ms
74,152 KB
testcase_22 AC 1,046 ms
69,408 KB
testcase_23 AC 1,198 ms
85,188 KB
testcase_24 AC 869 ms
52,332 KB
testcase_25 AC 808 ms
52,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,X = map(int,input().split())
d = {x:[] for x in range(1,M+1)}


for i in range(N):
    A,B = map(int,input().split())
    d[B].append(A)

l = []
for k,v in d.items():
    tmp = sorted(v)
    if tmp:tmp[-1]+=X
    l+=tmp

l.sort(reverse=True)
com = [0]
for i in range(len(l)):
    com.append(com[i]+l[i])

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

ans = 0
for i in C:
    ans+=com[i]
print(ans)
0