結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 807 ms
40,932 KB
testcase_01 AC 786 ms
40,968 KB
testcase_02 AC 762 ms
39,776 KB
testcase_03 AC 844 ms
40,244 KB
testcase_04 AC 843 ms
40,480 KB
testcase_05 AC 802 ms
39,520 KB
testcase_06 AC 825 ms
40,976 KB
testcase_07 AC 769 ms
40,812 KB
testcase_08 AC 763 ms
39,784 KB
testcase_09 AC 790 ms
40,700 KB
testcase_10 AC 784 ms
38,272 KB
testcase_11 AC 806 ms
38,328 KB
testcase_12 AC 822 ms
38,192 KB
testcase_13 AC 777 ms
38,320 KB
testcase_14 AC 782 ms
38,196 KB
testcase_15 AC 747 ms
38,324 KB
testcase_16 AC 806 ms
38,320 KB
testcase_17 AC 817 ms
38,320 KB
testcase_18 AC 833 ms
38,320 KB
testcase_19 AC 775 ms
38,196 KB
testcase_20 AC 781 ms
38,316 KB
testcase_21 AC 794 ms
38,320 KB
testcase_22 AC 809 ms
38,204 KB
testcase_23 AC 796 ms
38,192 KB
testcase_24 AC 776 ms
38,068 KB
testcase_25 AC 809 ms
38,192 KB
testcase_26 AC 796 ms
38,196 KB
testcase_27 AC 806 ms
38,324 KB
testcase_28 AC 784 ms
38,200 KB
testcase_29 AC 811 ms
38,188 KB
testcase_30 AC 29 ms
10,752 KB
testcase_31 AC 27 ms
10,752 KB
testcase_32 AC 834 ms
39,076 KB
testcase_33 AC 843 ms
39,516 KB
testcase_34 AC 875 ms
40,380 KB
testcase_35 AC 28 ms
10,624 KB
testcase_36 AC 29 ms
10,752 KB
testcase_37 AC 29 ms
10,624 KB
testcase_38 AC 29 ms
10,624 KB
testcase_39 AC 36 ms
11,008 KB
testcase_40 AC 36 ms
11,008 KB
testcase_41 AC 92 ms
13,440 KB
testcase_42 AC 92 ms
13,568 KB
testcase_43 AC 90 ms
13,440 KB
testcase_44 AC 87 ms
13,440 KB
testcase_45 AC 35 ms
11,008 KB
testcase_46 AC 99 ms
13,568 KB
testcase_47 AC 103 ms
13,696 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