結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー pluto77pluto77
提出日時 2016-10-17 14:34:22
言語 Python2
(2.7.18)
結果
AC  
実行時間 991 ms / 4,000 ms
コード長 498 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 48,680 KB
最終ジャッジ日時 2024-11-22 13:13:38
合計ジャッジ時間 35,565 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 981 ms
48,560 KB
testcase_01 AC 969 ms
48,440 KB
testcase_02 AC 962 ms
48,680 KB
testcase_03 AC 973 ms
47,208 KB
testcase_04 AC 969 ms
47,296 KB
testcase_05 AC 974 ms
48,556 KB
testcase_06 AC 980 ms
48,564 KB
testcase_07 AC 951 ms
48,564 KB
testcase_08 AC 942 ms
48,400 KB
testcase_09 AC 970 ms
47,676 KB
testcase_10 AC 969 ms
47,288 KB
testcase_11 AC 959 ms
47,544 KB
testcase_12 AC 961 ms
47,416 KB
testcase_13 AC 935 ms
47,288 KB
testcase_14 AC 956 ms
47,544 KB
testcase_15 AC 913 ms
47,416 KB
testcase_16 AC 988 ms
47,924 KB
testcase_17 AC 975 ms
47,288 KB
testcase_18 AC 988 ms
47,668 KB
testcase_19 AC 956 ms
47,412 KB
testcase_20 AC 953 ms
47,160 KB
testcase_21 AC 963 ms
47,160 KB
testcase_22 AC 988 ms
47,416 KB
testcase_23 AC 970 ms
47,160 KB
testcase_24 AC 972 ms
47,156 KB
testcase_25 AC 978 ms
47,412 KB
testcase_26 AC 946 ms
47,724 KB
testcase_27 AC 977 ms
47,796 KB
testcase_28 AC 956 ms
47,156 KB
testcase_29 AC 991 ms
47,800 KB
testcase_30 AC 11 ms
6,272 KB
testcase_31 AC 11 ms
6,016 KB
testcase_32 AC 975 ms
46,424 KB
testcase_33 AC 981 ms
46,532 KB
testcase_34 AC 966 ms
46,828 KB
testcase_35 AC 11 ms
6,144 KB
testcase_36 AC 11 ms
6,144 KB
testcase_37 AC 12 ms
6,272 KB
testcase_38 AC 11 ms
6,272 KB
testcase_39 AC 18 ms
6,528 KB
testcase_40 AC 18 ms
6,400 KB
testcase_41 AC 82 ms
10,368 KB
testcase_42 AC 81 ms
10,368 KB
testcase_43 AC 76 ms
10,240 KB
testcase_44 AC 77 ms
10,496 KB
testcase_45 AC 18 ms
6,528 KB
testcase_46 AC 85 ms
10,240 KB
testcase_47 AC 85 ms
10,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_433

n,k=map(int,raw_input().split())
s=[[0 for i in xrange(5)] for j in xrange(n)]
for i in xrange(n):
 s[i][0],s[i][1],s[i][2]=map(int,raw_input().split())
 s[i][3]=0
 s[i][4]=i
#print s
t=sorted(s,key=lambda x:(x[0],-x[1]),reverse=True)
u_cnt={}
for i in xrange(n):
 u_cnt[t[i][2]]=0
#print u_cnt
for i in xrange(n):
 u_cnt[t[i][2]]+=1
 t[i][3]=u_cnt[t[i][2]]
#print t
u=sorted(t,key=lambda x:(x[0],-x[3],-x[1]),reverse=True)
#print u
res=u[:k]
for i in xrange(len(res)):
 print res[i][4]
0