結果

問題 No.2957 Combo Deck Builder
ユーザー 👑 p-adicp-adic
提出日時 2024-10-30 19:03:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 606 ms / 1,000 ms
コード長 292 bytes
コンパイル時間 536 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 106,140 KB
最終ジャッジ日時 2024-10-30 19:03:33
合計ジャッジ時間 18,191 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,076 KB
testcase_01 AC 38 ms
53,248 KB
testcase_02 AC 38 ms
53,836 KB
testcase_03 AC 37 ms
52,752 KB
testcase_04 AC 38 ms
54,200 KB
testcase_05 AC 39 ms
52,864 KB
testcase_06 AC 524 ms
101,380 KB
testcase_07 AC 524 ms
101,824 KB
testcase_08 AC 527 ms
101,420 KB
testcase_09 AC 494 ms
101,264 KB
testcase_10 AC 476 ms
100,516 KB
testcase_11 AC 496 ms
101,224 KB
testcase_12 AC 524 ms
101,100 KB
testcase_13 AC 519 ms
101,772 KB
testcase_14 AC 523 ms
98,544 KB
testcase_15 AC 397 ms
98,712 KB
testcase_16 AC 551 ms
98,948 KB
testcase_17 AC 525 ms
98,796 KB
testcase_18 AC 538 ms
98,528 KB
testcase_19 AC 525 ms
98,952 KB
testcase_20 AC 519 ms
98,644 KB
testcase_21 AC 524 ms
99,044 KB
testcase_22 AC 536 ms
98,952 KB
testcase_23 AC 547 ms
98,640 KB
testcase_24 AC 394 ms
98,492 KB
testcase_25 AC 525 ms
98,576 KB
testcase_26 AC 492 ms
99,984 KB
testcase_27 AC 519 ms
100,320 KB
testcase_28 AC 606 ms
100,180 KB
testcase_29 AC 516 ms
100,172 KB
testcase_30 AC 221 ms
98,496 KB
testcase_31 AC 220 ms
98,348 KB
testcase_32 AC 356 ms
106,140 KB
testcase_33 AC 363 ms
105,236 KB
testcase_34 AC 426 ms
99,744 KB
testcase_35 AC 407 ms
99,836 KB
testcase_36 AC 37 ms
52,928 KB
testcase_37 AC 39 ms
54,532 KB
testcase_38 AC 38 ms
54,032 KB
testcase_39 AC 39 ms
52,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
J=lambda:map(int,input().split())
N,*_=J()
A=[[[]for i in R(N+1)]for s in R(2)]
a=0
for _ in R(N):
	C,X,Y=J()
	if X<Y:a+=X;A[0][N-C]+=[X-Y]
	else:a+=Y;A[1][C]+=[Y-X]
import heapq
for t in A:
	s=[]
	for c in R(N):
		for x in t[c]:heapq.heappush(s,x)
		if s:a-=heapq.heappop(s)
print(a)
0