結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー cielciel
提出日時 2016-10-18 00:45:25
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,459 ms / 4,000 ms
コード長 149 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 27,776 KB
最終ジャッジ日時 2024-06-08 02:29:32
合計ジャッジ時間 50,098 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,389 ms
27,392 KB
testcase_01 AC 1,375 ms
27,008 KB
testcase_02 AC 1,356 ms
26,112 KB
testcase_03 AC 1,364 ms
25,472 KB
testcase_04 AC 1,370 ms
25,472 KB
testcase_05 AC 1,364 ms
26,752 KB
testcase_06 AC 1,459 ms
27,776 KB
testcase_07 AC 1,352 ms
27,136 KB
testcase_08 AC 1,381 ms
26,880 KB
testcase_09 AC 1,433 ms
25,344 KB
testcase_10 AC 1,324 ms
25,472 KB
testcase_11 AC 1,329 ms
25,344 KB
testcase_12 AC 1,314 ms
25,216 KB
testcase_13 AC 1,301 ms
25,088 KB
testcase_14 AC 1,264 ms
25,216 KB
testcase_15 AC 1,248 ms
24,960 KB
testcase_16 AC 1,292 ms
25,344 KB
testcase_17 AC 1,319 ms
25,216 KB
testcase_18 AC 1,299 ms
25,216 KB
testcase_19 AC 1,294 ms
25,216 KB
testcase_20 AC 1,294 ms
25,216 KB
testcase_21 AC 1,330 ms
25,344 KB
testcase_22 AC 1,309 ms
25,344 KB
testcase_23 AC 1,318 ms
25,344 KB
testcase_24 AC 1,311 ms
24,960 KB
testcase_25 AC 1,292 ms
25,216 KB
testcase_26 AC 1,272 ms
25,216 KB
testcase_27 AC 1,291 ms
25,216 KB
testcase_28 AC 1,306 ms
24,960 KB
testcase_29 AC 1,312 ms
25,216 KB
testcase_30 AC 83 ms
12,160 KB
testcase_31 AC 91 ms
12,416 KB
testcase_32 AC 1,351 ms
25,344 KB
testcase_33 AC 1,350 ms
25,472 KB
testcase_34 AC 1,408 ms
25,472 KB
testcase_35 AC 86 ms
12,160 KB
testcase_36 AC 88 ms
12,160 KB
testcase_37 AC 88 ms
12,160 KB
testcase_38 AC 83 ms
12,416 KB
testcase_39 AC 92 ms
12,416 KB
testcase_40 AC 91 ms
12,160 KB
testcase_41 AC 177 ms
13,056 KB
testcase_42 AC 178 ms
13,056 KB
testcase_43 AC 176 ms
13,056 KB
testcase_44 AC 169 ms
13,312 KB
testcase_45 AC 95 ms
12,288 KB
testcase_46 AC 190 ms
13,824 KB
testcase_47 AC 193 ms
13,696 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: `*' interpreted as argument prefix
Syntax OK

ソースコード

diff #

h=Hash.new 0;n,k=gets.split.map &:to_i;p *n.times.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