結果
問題 | No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい |
ユーザー | pluto77 |
提出日時 | 2016-10-17 12:35:43 |
言語 | PyPy2 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 517 bytes |
コンパイル時間 | 1,731 ms |
コンパイル使用メモリ | 76,316 KB |
実行使用メモリ | 297,192 KB |
最終ジャッジ日時 | 2024-05-02 03:02:37 |
合計ジャッジ時間 | 11,375 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
ソースコード
#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 t=sorted(s,key=lambda x:(x[0],-x[3],-x[1]),reverse=True) u_cnt={} for i in xrange(n): u_cnt[t[i][3]]=0 res=[] while len(t)>0: res.append(t[0][4]) for i in xrange(len(t)): if t[i][2]==t[0][2]: t[i][3]+=1 t=t[1:] t=sorted(t,key=lambda x:(x[0],-x[3],-x[1]),reverse=True) res=res[:k] for i in xrange(len(res)): print res[i]