結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー H3PO4H3PO4
提出日時 2020-08-07 09:32:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 885 ms / 4,000 ms
コード長 374 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 41,764 KB
最終ジャッジ日時 2024-09-22 18:02:41
合計ジャッジ時間 33,243 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 850 ms
41,304 KB
testcase_01 AC 820 ms
41,296 KB
testcase_02 AC 797 ms
41,348 KB
testcase_03 AC 837 ms
41,244 KB
testcase_04 AC 843 ms
41,224 KB
testcase_05 AC 820 ms
41,356 KB
testcase_06 AC 856 ms
41,552 KB
testcase_07 AC 807 ms
41,296 KB
testcase_08 AC 826 ms
41,484 KB
testcase_09 AC 817 ms
41,764 KB
testcase_10 AC 848 ms
40,860 KB
testcase_11 AC 875 ms
40,984 KB
testcase_12 AC 859 ms
40,588 KB
testcase_13 AC 838 ms
41,056 KB
testcase_14 AC 844 ms
41,296 KB
testcase_15 AC 802 ms
41,372 KB
testcase_16 AC 880 ms
41,436 KB
testcase_17 AC 876 ms
40,848 KB
testcase_18 AC 877 ms
41,112 KB
testcase_19 AC 834 ms
40,984 KB
testcase_20 AC 821 ms
40,660 KB
testcase_21 AC 845 ms
40,736 KB
testcase_22 AC 855 ms
40,920 KB
testcase_23 AC 856 ms
40,928 KB
testcase_24 AC 833 ms
40,592 KB
testcase_25 AC 859 ms
41,104 KB
testcase_26 AC 824 ms
41,360 KB
testcase_27 AC 878 ms
41,296 KB
testcase_28 AC 833 ms
40,728 KB
testcase_29 AC 876 ms
41,364 KB
testcase_30 AC 31 ms
11,520 KB
testcase_31 AC 32 ms
11,520 KB
testcase_32 AC 885 ms
39,356 KB
testcase_33 AC 870 ms
39,684 KB
testcase_34 AC 831 ms
41,748 KB
testcase_35 AC 32 ms
11,520 KB
testcase_36 AC 31 ms
11,392 KB
testcase_37 AC 33 ms
11,648 KB
testcase_38 AC 31 ms
11,520 KB
testcase_39 AC 39 ms
11,776 KB
testcase_40 AC 38 ms
11,776 KB
testcase_41 AC 92 ms
14,592 KB
testcase_42 AC 92 ms
14,464 KB
testcase_43 AC 88 ms
14,592 KB
testcase_44 AC 90 ms
14,592 KB
testcase_45 AC 38 ms
11,776 KB
testcase_46 AC 100 ms
14,336 KB
testcase_47 AC 103 ms
14,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())

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

Teams.sort(key=lambda x: (-x[0], x[1]))

Univ = [1] * (10 ** 5)
for i in range(N):
    Teams[i][4] = Univ[Teams[i][2]]
    Univ[Teams[i][2]] += 1

Teams.sort(key=lambda x: (-x[0], x[4], x[1]))
for i in range(K):
    print(Teams[i][3])
0