結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー nebukuro09nebukuro09
提出日時 2016-10-15 01:13:48
言語 Python2
(2.7.18)
結果
AC  
実行時間 920 ms / 4,000 ms
コード長 356 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 6,952 KB
実行使用メモリ 40,528 KB
最終ジャッジ日時 2024-11-22 10:01:17
合計ジャッジ時間 31,662 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 828 ms
40,252 KB
testcase_01 AC 822 ms
40,256 KB
testcase_02 AC 823 ms
40,192 KB
testcase_03 AC 836 ms
40,320 KB
testcase_04 AC 815 ms
40,320 KB
testcase_05 AC 822 ms
40,248 KB
testcase_06 AC 831 ms
40,448 KB
testcase_07 AC 803 ms
40,380 KB
testcase_08 AC 812 ms
40,448 KB
testcase_09 AC 832 ms
40,528 KB
testcase_10 AC 834 ms
39,504 KB
testcase_11 AC 850 ms
39,760 KB
testcase_12 AC 848 ms
39,524 KB
testcase_13 AC 848 ms
39,764 KB
testcase_14 AC 846 ms
39,912 KB
testcase_15 AC 801 ms
40,144 KB
testcase_16 AC 873 ms
40,016 KB
testcase_17 AC 854 ms
39,628 KB
testcase_18 AC 920 ms
39,888 KB
testcase_19 AC 859 ms
39,888 KB
testcase_20 AC 851 ms
39,528 KB
testcase_21 AC 870 ms
39,380 KB
testcase_22 AC 850 ms
39,628 KB
testcase_23 AC 835 ms
39,508 KB
testcase_24 AC 814 ms
39,496 KB
testcase_25 AC 854 ms
39,888 KB
testcase_26 AC 841 ms
40,008 KB
testcase_27 AC 848 ms
40,012 KB
testcase_28 AC 818 ms
39,632 KB
testcase_29 AC 857 ms
39,888 KB
testcase_30 AC 16 ms
6,816 KB
testcase_31 AC 16 ms
6,912 KB
testcase_32 AC 866 ms
38,656 KB
testcase_33 AC 861 ms
39,008 KB
testcase_34 AC 819 ms
40,444 KB
testcase_35 AC 17 ms
7,168 KB
testcase_36 AC 16 ms
6,912 KB
testcase_37 AC 17 ms
7,168 KB
testcase_38 AC 17 ms
7,168 KB
testcase_39 AC 23 ms
7,424 KB
testcase_40 AC 23 ms
7,296 KB
testcase_41 AC 75 ms
10,368 KB
testcase_42 AC 74 ms
10,368 KB
testcase_43 AC 71 ms
10,240 KB
testcase_44 AC 70 ms
10,240 KB
testcase_45 AC 24 ms
7,424 KB
testcase_46 AC 79 ms
10,368 KB
testcase_47 AC 79 ms
10,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, raw_input().split())
spuri = [map(int, raw_input().split()) + [0, i] for i in xrange(N)]
u_rank = [0 for _ in xrange(10**5+1)]

spuri.sort(key=lambda x:(-x[0], x[1]))
for i in xrange(N):
    spuri[i][3] = u_rank[spuri[i][2]]
    u_rank[spuri[i][2]] += 1
spuri.sort(key=lambda x:(-x[0], x[3], x[1]))
for i in xrange(K):
    print spuri[i][4]
0