結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,029 ms
48,436 KB
testcase_01 AC 1,019 ms
48,564 KB
testcase_02 AC 1,048 ms
48,548 KB
testcase_03 AC 1,058 ms
47,076 KB
testcase_04 AC 1,043 ms
47,448 KB
testcase_05 AC 1,004 ms
48,556 KB
testcase_06 AC 1,041 ms
48,816 KB
testcase_07 AC 1,040 ms
48,692 KB
testcase_08 AC 1,056 ms
48,556 KB
testcase_09 AC 1,022 ms
47,676 KB
testcase_10 AC 1,000 ms
47,416 KB
testcase_11 AC 998 ms
47,544 KB
testcase_12 AC 1,016 ms
47,288 KB
testcase_13 AC 983 ms
47,352 KB
testcase_14 AC 982 ms
47,668 KB
testcase_15 AC 965 ms
47,540 KB
testcase_16 AC 1,043 ms
47,924 KB
testcase_17 AC 1,060 ms
47,412 KB
testcase_18 AC 1,057 ms
47,668 KB
testcase_19 AC 1,000 ms
47,416 KB
testcase_20 AC 988 ms
47,160 KB
testcase_21 AC 986 ms
47,160 KB
testcase_22 AC 1,022 ms
47,420 KB
testcase_23 AC 1,016 ms
47,288 KB
testcase_24 AC 1,005 ms
47,028 KB
testcase_25 AC 999 ms
47,416 KB
testcase_26 AC 991 ms
47,796 KB
testcase_27 AC 1,030 ms
47,796 KB
testcase_28 AC 1,009 ms
47,160 KB
testcase_29 AC 1,019 ms
47,920 KB
testcase_30 AC 12 ms
6,272 KB
testcase_31 AC 12 ms
6,272 KB
testcase_32 AC 1,053 ms
46,424 KB
testcase_33 AC 1,008 ms
46,532 KB
testcase_34 AC 1,007 ms
46,988 KB
testcase_35 AC 13 ms
6,144 KB
testcase_36 AC 11 ms
6,144 KB
testcase_37 AC 11 ms
6,400 KB
testcase_38 AC 12 ms
6,400 KB
testcase_39 AC 18 ms
6,784 KB
testcase_40 AC 18 ms
6,784 KB
testcase_41 AC 85 ms
10,496 KB
testcase_42 AC 82 ms
10,496 KB
testcase_43 AC 80 ms
10,496 KB
testcase_44 AC 81 ms
10,496 KB
testcase_45 AC 18 ms
6,528 KB
testcase_46 AC 90 ms
10,112 KB
testcase_47 AC 89 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