結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー titiatitia
提出日時 2023-04-20 01:24:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 715 ms / 4,000 ms
コード長 484 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 38,880 KB
最終ジャッジ日時 2024-10-15 04:11:30
合計ジャッジ時間 27,527 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 700 ms
38,688 KB
testcase_01 AC 671 ms
38,556 KB
testcase_02 AC 655 ms
38,672 KB
testcase_03 AC 689 ms
38,764 KB
testcase_04 AC 697 ms
38,616 KB
testcase_05 AC 674 ms
38,676 KB
testcase_06 AC 688 ms
38,816 KB
testcase_07 AC 668 ms
38,820 KB
testcase_08 AC 637 ms
38,880 KB
testcase_09 AC 655 ms
38,596 KB
testcase_10 AC 685 ms
35,704 KB
testcase_11 AC 690 ms
35,684 KB
testcase_12 AC 708 ms
35,560 KB
testcase_13 AC 666 ms
35,560 KB
testcase_14 AC 715 ms
35,688 KB
testcase_15 AC 634 ms
35,688 KB
testcase_16 AC 704 ms
35,560 KB
testcase_17 AC 705 ms
35,684 KB
testcase_18 AC 709 ms
35,812 KB
testcase_19 AC 662 ms
35,736 KB
testcase_20 AC 699 ms
35,564 KB
testcase_21 AC 674 ms
35,752 KB
testcase_22 AC 703 ms
35,500 KB
testcase_23 AC 687 ms
35,752 KB
testcase_24 AC 657 ms
35,812 KB
testcase_25 AC 691 ms
35,560 KB
testcase_26 AC 663 ms
35,500 KB
testcase_27 AC 682 ms
35,628 KB
testcase_28 AC 653 ms
35,560 KB
testcase_29 AC 683 ms
35,688 KB
testcase_30 AC 30 ms
11,392 KB
testcase_31 AC 30 ms
11,520 KB
testcase_32 AC 699 ms
36,568 KB
testcase_33 AC 678 ms
36,872 KB
testcase_34 AC 640 ms
38,632 KB
testcase_35 AC 31 ms
11,520 KB
testcase_36 AC 31 ms
11,392 KB
testcase_37 AC 32 ms
11,520 KB
testcase_38 AC 31 ms
11,520 KB
testcase_39 AC 36 ms
11,520 KB
testcase_40 AC 36 ms
11,776 KB
testcase_41 AC 84 ms
13,824 KB
testcase_42 AC 81 ms
13,824 KB
testcase_43 AC 81 ms
13,824 KB
testcase_44 AC 82 ms
13,824 KB
testcase_45 AC 36 ms
11,776 KB
testcase_46 AC 90 ms
13,824 KB
testcase_47 AC 89 ms
13,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter

N,K=map(int,input().split())
LIST=[]
for i in range(N):
    S,P,U=map(int,input().split())
    LIST.append([S,P,U,i])

RANK=[0]*(10**5+5)

LIST.sort(key=itemgetter(1))
LIST.sort(key=itemgetter(0),reverse=True)

#print(LIST)

for i in range(N):
    LIST[i].append(RANK[LIST[i][-2]])
    RANK[LIST[i][-3]]+=1

LIST.sort(key=itemgetter(1))
LIST.sort(key=itemgetter(4))
LIST.sort(key=itemgetter(0),reverse=True)

for i in range(K):
    print(LIST[i][-2])
0