結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー cielciel
提出日時 2016-10-18 00:38:24
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,288 ms / 4,000 ms
コード長 162 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 34,944 KB
最終ジャッジ日時 2024-06-07 22:25:15
合計ジャッジ時間 44,296 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,222 ms
34,816 KB
testcase_01 AC 1,203 ms
34,944 KB
testcase_02 AC 1,238 ms
33,664 KB
testcase_03 AC 1,215 ms
32,896 KB
testcase_04 AC 1,190 ms
32,896 KB
testcase_05 AC 1,197 ms
34,176 KB
testcase_06 AC 1,288 ms
34,944 KB
testcase_07 AC 1,191 ms
34,688 KB
testcase_08 AC 1,236 ms
34,560 KB
testcase_09 AC 1,239 ms
32,512 KB
testcase_10 AC 1,147 ms
32,640 KB
testcase_11 AC 1,143 ms
32,768 KB
testcase_12 AC 1,134 ms
32,512 KB
testcase_13 AC 1,122 ms
32,640 KB
testcase_14 AC 1,104 ms
32,768 KB
testcase_15 AC 1,070 ms
32,640 KB
testcase_16 AC 1,124 ms
32,640 KB
testcase_17 AC 1,186 ms
32,640 KB
testcase_18 AC 1,145 ms
32,640 KB
testcase_19 AC 1,120 ms
32,640 KB
testcase_20 AC 1,115 ms
32,512 KB
testcase_21 AC 1,135 ms
32,768 KB
testcase_22 AC 1,142 ms
32,640 KB
testcase_23 AC 1,145 ms
32,640 KB
testcase_24 AC 1,140 ms
32,640 KB
testcase_25 AC 1,169 ms
32,768 KB
testcase_26 AC 1,244 ms
32,512 KB
testcase_27 AC 1,104 ms
32,640 KB
testcase_28 AC 1,137 ms
32,640 KB
testcase_29 AC 1,127 ms
32,512 KB
testcase_30 AC 78 ms
12,032 KB
testcase_31 AC 76 ms
12,288 KB
testcase_32 AC 1,174 ms
32,640 KB
testcase_33 AC 1,194 ms
32,768 KB
testcase_34 AC 1,229 ms
33,024 KB
testcase_35 AC 73 ms
12,160 KB
testcase_36 AC 72 ms
12,160 KB
testcase_37 AC 71 ms
12,288 KB
testcase_38 AC 72 ms
12,160 KB
testcase_39 AC 79 ms
12,032 KB
testcase_40 AC 79 ms
12,160 KB
testcase_41 AC 153 ms
13,824 KB
testcase_42 AC 155 ms
13,824 KB
testcase_43 AC 150 ms
13,824 KB
testcase_44 AC 147 ms
13,696 KB
testcase_45 AC 78 ms
12,288 KB
testcase_46 AC 161 ms
13,952 KB
testcase_47 AC 166 ms
13,952 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

h=Hash.new(0)
n,k=gets.split.map(&:to_i)
puts n.times.map{|i|
s,t,u=gets.split.map(&:to_i)
[-s,u,t,i]
}.sort.map{|s,u,t,i|
[s,h[u]+=1,t,i]
}.sort.map(&:last)[0,k]
0