結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー ichibanshiboriichibanshibori
提出日時 2016-10-15 00:01:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 888 ms / 4,000 ms
コード長 504 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 40,852 KB
最終ジャッジ日時 2024-11-22 07:58:13
合計ジャッジ時間 31,573 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 865 ms
40,680 KB
testcase_01 AC 830 ms
40,716 KB
testcase_02 AC 844 ms
39,520 KB
testcase_03 AC 858 ms
40,112 KB
testcase_04 AC 846 ms
40,356 KB
testcase_05 AC 831 ms
39,648 KB
testcase_06 AC 874 ms
40,852 KB
testcase_07 AC 853 ms
40,600 KB
testcase_08 AC 840 ms
39,656 KB
testcase_09 AC 845 ms
40,832 KB
testcase_10 AC 834 ms
38,196 KB
testcase_11 AC 853 ms
38,196 KB
testcase_12 AC 819 ms
38,324 KB
testcase_13 AC 821 ms
38,064 KB
testcase_14 AC 858 ms
38,196 KB
testcase_15 AC 782 ms
38,196 KB
testcase_16 AC 879 ms
38,324 KB
testcase_17 AC 847 ms
38,192 KB
testcase_18 AC 852 ms
38,196 KB
testcase_19 AC 822 ms
38,324 KB
testcase_20 AC 820 ms
38,196 KB
testcase_21 AC 835 ms
38,256 KB
testcase_22 AC 868 ms
38,192 KB
testcase_23 AC 822 ms
38,192 KB
testcase_24 AC 818 ms
38,192 KB
testcase_25 AC 860 ms
38,196 KB
testcase_26 AC 818 ms
38,200 KB
testcase_27 AC 843 ms
38,200 KB
testcase_28 AC 806 ms
38,192 KB
testcase_29 AC 833 ms
38,068 KB
testcase_30 AC 30 ms
10,624 KB
testcase_31 AC 29 ms
10,624 KB
testcase_32 AC 865 ms
39,204 KB
testcase_33 AC 888 ms
39,516 KB
testcase_34 AC 840 ms
40,508 KB
testcase_35 AC 30 ms
10,752 KB
testcase_36 AC 30 ms
10,624 KB
testcase_37 AC 31 ms
10,624 KB
testcase_38 AC 31 ms
10,752 KB
testcase_39 AC 38 ms
10,880 KB
testcase_40 AC 37 ms
10,880 KB
testcase_41 AC 103 ms
13,440 KB
testcase_42 AC 95 ms
13,440 KB
testcase_43 AC 94 ms
13,440 KB
testcase_44 AC 95 ms
13,440 KB
testcase_45 AC 40 ms
11,008 KB
testcase_46 AC 105 ms
13,696 KB
testcase_47 AC 104 ms
13,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = tuple(int(i) for i in input().split())
team_lst = []
school_dic = {}

for i in range(N):
    sn, pn, un = tuple(int(i) for i in input().split())
    team_lst += [(sn, -pn, un, i)]

team_lst = sorted(team_lst, reverse=True)

team_lst2 = []
for r in team_lst:
    sn, pn, un, idx = r
    sum_un = school_dic.get(un, 0) + 1
    school_dic[un] = sum_un
    team_lst2 += [(sn, -sum_un, pn, idx)]

team_lst2 = sorted(team_lst2, reverse=True)

for r in team_lst2[:K]:
    _, _, _, idx = r
    print(r[3])
0