結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー tookunn_1213tookunn_1213
提出日時 2016-10-15 01:29:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 753 ms / 4,000 ms
コード長 569 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,024 KB
最終ジャッジ日時 2024-11-22 10:25:26
合計ジャッジ時間 26,512 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 753 ms
31,772 KB
testcase_01 AC 710 ms
31,768 KB
testcase_02 AC 694 ms
31,884 KB
testcase_03 AC 720 ms
31,840 KB
testcase_04 AC 732 ms
31,824 KB
testcase_05 AC 693 ms
31,892 KB
testcase_06 AC 731 ms
31,924 KB
testcase_07 AC 677 ms
32,024 KB
testcase_08 AC 665 ms
31,920 KB
testcase_09 AC 674 ms
31,932 KB
testcase_10 AC 690 ms
31,460 KB
testcase_11 AC 687 ms
31,480 KB
testcase_12 AC 715 ms
31,340 KB
testcase_13 AC 654 ms
31,608 KB
testcase_14 AC 686 ms
31,712 KB
testcase_15 AC 645 ms
31,988 KB
testcase_16 AC 702 ms
31,856 KB
testcase_17 AC 683 ms
31,220 KB
testcase_18 AC 701 ms
31,604 KB
testcase_19 AC 654 ms
31,732 KB
testcase_20 AC 671 ms
31,076 KB
testcase_21 AC 658 ms
31,092 KB
testcase_22 AC 708 ms
31,348 KB
testcase_23 AC 661 ms
31,348 KB
testcase_24 AC 672 ms
31,204 KB
testcase_25 AC 681 ms
31,472 KB
testcase_26 AC 669 ms
31,856 KB
testcase_27 AC 682 ms
31,860 KB
testcase_28 AC 660 ms
31,348 KB
testcase_29 AC 679 ms
31,860 KB
testcase_30 AC 34 ms
11,520 KB
testcase_31 AC 35 ms
11,520 KB
testcase_32 AC 715 ms
29,988 KB
testcase_33 AC 702 ms
29,984 KB
testcase_34 AC 679 ms
31,992 KB
testcase_35 AC 35 ms
11,648 KB
testcase_36 AC 37 ms
11,648 KB
testcase_37 AC 36 ms
11,392 KB
testcase_38 AC 36 ms
11,648 KB
testcase_39 AC 43 ms
11,776 KB
testcase_40 AC 43 ms
11,776 KB
testcase_41 AC 91 ms
13,568 KB
testcase_42 AC 88 ms
13,440 KB
testcase_43 AC 88 ms
13,568 KB
testcase_44 AC 88 ms
13,696 KB
testcase_45 AC 43 ms
11,776 KB
testcase_46 AC 98 ms
13,312 KB
testcase_47 AC 95 ms
13,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter
N,K = map(int,input().split())
team = [() for i in range(N)]
for i in range(N):
	s,p,u = map(int,input().split())
	team[i] = (s,p,u,i)
team = sorted(team,key=itemgetter(1))
team = sorted(team,key=itemgetter(0),reverse=True)
cnt = [0 for i in range(100000 + 1)]
for i in range(N):
	cnt[team[i][2]]+=1
	team[i] = (team[i][0],team[i][1],team[i][2],team[i][3],cnt[team[i][2]])
team = sorted(team,key=itemgetter(1))
team = sorted(team,key=itemgetter(4))
team = sorted(team,key=itemgetter(0),reverse=True)
for i in range(K):
	print(team[i][3])
0