結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー qibqib
提出日時 2023-02-23 00:27:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 622 ms / 4,000 ms
コード長 420 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 114,588 KB
最終ジャッジ日時 2024-07-23 00:13:00
合計ジャッジ時間 21,594 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 604 ms
111,488 KB
testcase_01 AC 614 ms
111,212 KB
testcase_02 AC 582 ms
110,060 KB
testcase_03 AC 563 ms
109,548 KB
testcase_04 AC 565 ms
109,304 KB
testcase_05 AC 585 ms
109,244 KB
testcase_06 AC 622 ms
111,504 KB
testcase_07 AC 606 ms
110,804 KB
testcase_08 AC 591 ms
109,160 KB
testcase_09 AC 558 ms
109,556 KB
testcase_10 AC 481 ms
110,720 KB
testcase_11 AC 481 ms
112,420 KB
testcase_12 AC 475 ms
111,104 KB
testcase_13 AC 472 ms
110,368 KB
testcase_14 AC 467 ms
112,128 KB
testcase_15 AC 477 ms
114,380 KB
testcase_16 AC 478 ms
113,260 KB
testcase_17 AC 488 ms
111,872 KB
testcase_18 AC 487 ms
112,276 KB
testcase_19 AC 476 ms
110,312 KB
testcase_20 AC 471 ms
109,684 KB
testcase_21 AC 480 ms
109,272 KB
testcase_22 AC 487 ms
111,760 KB
testcase_23 AC 480 ms
110,712 KB
testcase_24 AC 471 ms
109,492 KB
testcase_25 AC 469 ms
111,104 KB
testcase_26 AC 464 ms
112,536 KB
testcase_27 AC 472 ms
113,256 KB
testcase_28 AC 480 ms
109,608 KB
testcase_29 AC 475 ms
114,588 KB
testcase_30 AC 64 ms
79,504 KB
testcase_31 AC 65 ms
79,360 KB
testcase_32 AC 488 ms
110,576 KB
testcase_33 AC 492 ms
110,720 KB
testcase_34 AC 563 ms
109,132 KB
testcase_35 AC 64 ms
79,360 KB
testcase_36 AC 64 ms
79,616 KB
testcase_37 AC 64 ms
79,488 KB
testcase_38 AC 68 ms
79,744 KB
testcase_39 AC 82 ms
79,616 KB
testcase_40 AC 83 ms
80,256 KB
testcase_41 AC 122 ms
82,944 KB
testcase_42 AC 123 ms
83,072 KB
testcase_43 AC 125 ms
83,324 KB
testcase_44 AC 128 ms
82,816 KB
testcase_45 AC 83 ms
79,948 KB
testcase_46 AC 136 ms
83,200 KB
testcase_47 AC 135 ms
83,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())

m = 10 ** 5

items = [[] for _ in range(m)]
for i in range(n):
  si, pi, ui = map(int, input().split())
  ui -= 1
  items[ui].append((si, pi, i))

teams = []
for ui in range(m):
  items[ui].sort(key=lambda x: (- x[0], x[1]))
  for j in range(len(items[ui])):
    si, pi, i = items[ui][j]
    teams.append((- si, j, pi, i))

teams.sort()
print(*[i for _, _, _, i in teams[:k]], sep="\n")
0