結果

問題 No.2957 Combo Deck Builder
ユーザー ニックネームニックネーム
提出日時 2024-11-08 22:48:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 714 ms / 1,000 ms
コード長 343 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 105,372 KB
最終ジャッジ日時 2024-11-08 22:48:51
合計ジャッジ時間 21,728 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 39 ms
52,864 KB
testcase_04 AC 43 ms
52,224 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 614 ms
97,628 KB
testcase_07 AC 648 ms
97,868 KB
testcase_08 AC 605 ms
97,756 KB
testcase_09 AC 675 ms
97,388 KB
testcase_10 AC 603 ms
97,208 KB
testcase_11 AC 660 ms
97,176 KB
testcase_12 AC 602 ms
96,956 KB
testcase_13 AC 690 ms
96,888 KB
testcase_14 AC 665 ms
96,444 KB
testcase_15 AC 709 ms
97,312 KB
testcase_16 AC 654 ms
98,336 KB
testcase_17 AC 709 ms
98,316 KB
testcase_18 AC 681 ms
97,456 KB
testcase_19 AC 678 ms
97,780 KB
testcase_20 AC 714 ms
97,580 KB
testcase_21 AC 646 ms
97,068 KB
testcase_22 AC 670 ms
97,968 KB
testcase_23 AC 644 ms
97,708 KB
testcase_24 AC 665 ms
96,056 KB
testcase_25 AC 663 ms
97,456 KB
testcase_26 AC 683 ms
99,420 KB
testcase_27 AC 660 ms
99,224 KB
testcase_28 AC 679 ms
98,112 KB
testcase_29 AC 686 ms
99,248 KB
testcase_30 AC 630 ms
91,800 KB
testcase_31 AC 639 ms
90,432 KB
testcase_32 AC 635 ms
103,108 KB
testcase_33 AC 682 ms
105,372 KB
testcase_34 AC 159 ms
76,032 KB
testcase_35 AC 163 ms
76,160 KB
testcase_36 AC 38 ms
52,224 KB
testcase_37 AC 37 ms
52,096 KB
testcase_38 AC 37 ms
52,096 KB
testcase_39 AC 38 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop,heappush
n = int(input())
a = []; b = []; s = 0
for _ in range(n):
    c,x,y = map(int,input().split()); s += max(x,y)
    if x<y: a.append((c,y-x))
    if x>y: b.append((n-c,x-y))
def f(a):
    global s; h = []
    for c,d in sorted(a):
        heappush(h,d)
        if len(h)>c: s -= heappop(h)
f(a); f(b); print(s)
0