結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー rlangevinrlangevin
提出日時 2023-12-06 00:44:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 503 ms / 4,000 ms
コード長 417 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 112,136 KB
最終ジャッジ日時 2024-09-27 00:46:47
合計ジャッジ時間 17,854 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 417 ms
106,252 KB
testcase_01 AC 418 ms
105,660 KB
testcase_02 AC 420 ms
107,756 KB
testcase_03 AC 421 ms
111,232 KB
testcase_04 AC 413 ms
111,256 KB
testcase_05 AC 439 ms
106,076 KB
testcase_06 AC 503 ms
112,136 KB
testcase_07 AC 487 ms
105,964 KB
testcase_08 AC 480 ms
106,200 KB
testcase_09 AC 470 ms
110,848 KB
testcase_10 AC 392 ms
110,592 KB
testcase_11 AC 380 ms
110,720 KB
testcase_12 AC 382 ms
110,720 KB
testcase_13 AC 363 ms
110,848 KB
testcase_14 AC 351 ms
110,720 KB
testcase_15 AC 349 ms
111,112 KB
testcase_16 AC 356 ms
111,104 KB
testcase_17 AC 363 ms
110,464 KB
testcase_18 AC 360 ms
110,720 KB
testcase_19 AC 353 ms
110,592 KB
testcase_20 AC 357 ms
111,104 KB
testcase_21 AC 351 ms
110,908 KB
testcase_22 AC 357 ms
110,848 KB
testcase_23 AC 365 ms
111,232 KB
testcase_24 AC 360 ms
110,968 KB
testcase_25 AC 360 ms
110,688 KB
testcase_26 AC 337 ms
110,920 KB
testcase_27 AC 349 ms
110,848 KB
testcase_28 AC 340 ms
110,464 KB
testcase_29 AC 334 ms
110,720 KB
testcase_30 AC 43 ms
62,208 KB
testcase_31 AC 42 ms
62,080 KB
testcase_32 AC 358 ms
110,976 KB
testcase_33 AC 367 ms
110,592 KB
testcase_34 AC 428 ms
111,460 KB
testcase_35 AC 42 ms
62,208 KB
testcase_36 AC 43 ms
62,592 KB
testcase_37 AC 45 ms
62,080 KB
testcase_38 AC 45 ms
62,464 KB
testcase_39 AC 52 ms
64,512 KB
testcase_40 AC 47 ms
64,640 KB
testcase_41 AC 86 ms
82,304 KB
testcase_42 AC 86 ms
82,484 KB
testcase_43 AC 85 ms
82,944 KB
testcase_44 AC 86 ms
82,432 KB
testcase_45 AC 51 ms
66,560 KB
testcase_46 AC 90 ms
82,816 KB
testcase_47 AC 93 ms
82,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, K = map(int, input().split())
M = 10 ** 5 + 5
D = [[] for _ in range(M)]
for i in range(N):
    s, p, u = map(int, input().split())
    D[u].append((-s, p, i))
    
ans = []
for i in range(M):
    now = 0
    D[i].sort()
    for j in range(len(D[i])):
        s, p, ind = D[i][j]
        ans.append((s, j, p, ind))
        
ans.sort()
for i in range(K):
    print(ans[i][-1])
0