結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー cielciel
提出日時 2016-10-18 00:42:07
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,662 ms / 4,000 ms
コード長 180 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 27,136 KB
最終ジャッジ日時 2024-11-22 13:46:04
合計ジャッジ時間 56,037 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,547 ms
27,136 KB
testcase_01 AC 1,594 ms
27,008 KB
testcase_02 AC 1,516 ms
26,112 KB
testcase_03 AC 1,529 ms
25,088 KB
testcase_04 AC 1,533 ms
25,088 KB
testcase_05 AC 1,528 ms
26,752 KB
testcase_06 AC 1,662 ms
27,008 KB
testcase_07 AC 1,521 ms
27,136 KB
testcase_08 AC 1,571 ms
26,752 KB
testcase_09 AC 1,583 ms
24,960 KB
testcase_10 AC 1,504 ms
24,832 KB
testcase_11 AC 1,475 ms
24,704 KB
testcase_12 AC 1,448 ms
24,704 KB
testcase_13 AC 1,431 ms
24,704 KB
testcase_14 AC 1,418 ms
24,832 KB
testcase_15 AC 1,385 ms
24,960 KB
testcase_16 AC 1,454 ms
24,960 KB
testcase_17 AC 1,501 ms
24,704 KB
testcase_18 AC 1,506 ms
24,704 KB
testcase_19 AC 1,448 ms
24,832 KB
testcase_20 AC 1,471 ms
24,832 KB
testcase_21 AC 1,474 ms
24,704 KB
testcase_22 AC 1,503 ms
24,704 KB
testcase_23 AC 1,483 ms
24,704 KB
testcase_24 AC 1,465 ms
24,704 KB
testcase_25 AC 1,460 ms
24,832 KB
testcase_26 AC 1,425 ms
24,704 KB
testcase_27 AC 1,452 ms
24,832 KB
testcase_28 AC 1,457 ms
24,704 KB
testcase_29 AC 1,427 ms
24,960 KB
testcase_30 AC 104 ms
12,288 KB
testcase_31 AC 96 ms
12,160 KB
testcase_32 AC 1,536 ms
24,704 KB
testcase_33 AC 1,538 ms
24,832 KB
testcase_34 AC 1,605 ms
25,216 KB
testcase_35 AC 93 ms
12,288 KB
testcase_36 AC 92 ms
12,032 KB
testcase_37 AC 98 ms
12,288 KB
testcase_38 AC 93 ms
12,160 KB
testcase_39 AC 115 ms
12,032 KB
testcase_40 AC 102 ms
12,288 KB
testcase_41 AC 195 ms
13,056 KB
testcase_42 AC 194 ms
13,056 KB
testcase_43 AC 191 ms
12,928 KB
testcase_44 AC 198 ms
12,928 KB
testcase_45 AC 108 ms
12,032 KB
testcase_46 AC 209 ms
12,800 KB
testcase_47 AC 217 ms
12,800 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]
|e|e[1]=h[e[1]]+=1;e
}.sort.map(&:last)[0,k]
0