結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー cielciel
提出日時 2016-10-20 02:41:37
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,260 ms / 4,000 ms
コード長 149 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 27,520 KB
最終ジャッジ日時 2024-06-07 22:26:28
合計ジャッジ時間 42,596 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,192 ms
26,880 KB
testcase_01 AC 1,188 ms
27,392 KB
testcase_02 AC 1,170 ms
26,240 KB
testcase_03 AC 1,176 ms
25,600 KB
testcase_04 AC 1,159 ms
25,472 KB
testcase_05 AC 1,175 ms
26,624 KB
testcase_06 AC 1,260 ms
27,520 KB
testcase_07 AC 1,178 ms
27,392 KB
testcase_08 AC 1,212 ms
26,880 KB
testcase_09 AC 1,207 ms
25,344 KB
testcase_10 AC 1,134 ms
25,216 KB
testcase_11 AC 1,126 ms
25,088 KB
testcase_12 AC 1,117 ms
25,216 KB
testcase_13 AC 1,108 ms
25,088 KB
testcase_14 AC 1,169 ms
25,088 KB
testcase_15 AC 1,055 ms
24,960 KB
testcase_16 AC 1,124 ms
25,216 KB
testcase_17 AC 1,179 ms
25,216 KB
testcase_18 AC 1,144 ms
25,088 KB
testcase_19 AC 1,104 ms
25,088 KB
testcase_20 AC 1,126 ms
25,216 KB
testcase_21 AC 1,121 ms
25,216 KB
testcase_22 AC 1,122 ms
25,088 KB
testcase_23 AC 1,130 ms
25,344 KB
testcase_24 AC 1,132 ms
24,960 KB
testcase_25 AC 1,126 ms
25,216 KB
testcase_26 AC 1,084 ms
25,216 KB
testcase_27 AC 1,100 ms
25,216 KB
testcase_28 AC 1,125 ms
24,832 KB
testcase_29 AC 1,092 ms
25,088 KB
testcase_30 AC 73 ms
12,032 KB
testcase_31 AC 71 ms
12,288 KB
testcase_32 AC 1,137 ms
25,088 KB
testcase_33 AC 1,169 ms
25,344 KB
testcase_34 AC 1,208 ms
25,472 KB
testcase_35 AC 73 ms
12,160 KB
testcase_36 AC 71 ms
12,032 KB
testcase_37 AC 71 ms
12,160 KB
testcase_38 AC 71 ms
12,288 KB
testcase_39 AC 79 ms
12,032 KB
testcase_40 AC 80 ms
12,160 KB
testcase_41 AC 150 ms
13,184 KB
testcase_42 AC 151 ms
13,184 KB
testcase_43 AC 146 ms
13,056 KB
testcase_44 AC 145 ms
13,056 KB
testcase_45 AC 78 ms
12,160 KB
testcase_46 AC 159 ms
13,568 KB
testcase_47 AC 164 ms
13,568 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: `*' interpreted as argument prefix
Syntax OK

ソースコード

diff #

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