結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,444 ms
26,752 KB
testcase_01 AC 1,445 ms
27,392 KB
testcase_02 AC 1,400 ms
26,240 KB
testcase_03 AC 1,445 ms
25,344 KB
testcase_04 AC 1,397 ms
25,216 KB
testcase_05 AC 1,420 ms
26,752 KB
testcase_06 AC 1,506 ms
27,392 KB
testcase_07 AC 1,395 ms
27,008 KB
testcase_08 AC 1,462 ms
26,752 KB
testcase_09 AC 1,463 ms
24,960 KB
testcase_10 AC 1,364 ms
25,088 KB
testcase_11 AC 1,368 ms
25,088 KB
testcase_12 AC 1,347 ms
25,216 KB
testcase_13 AC 1,330 ms
24,960 KB
testcase_14 AC 1,307 ms
25,088 KB
testcase_15 AC 1,277 ms
24,704 KB
testcase_16 AC 1,343 ms
25,216 KB
testcase_17 AC 1,396 ms
25,088 KB
testcase_18 AC 1,386 ms
25,088 KB
testcase_19 AC 1,335 ms
24,960 KB
testcase_20 AC 1,320 ms
25,088 KB
testcase_21 AC 1,350 ms
25,216 KB
testcase_22 AC 1,350 ms
25,216 KB
testcase_23 AC 1,351 ms
25,216 KB
testcase_24 AC 1,344 ms
24,832 KB
testcase_25 AC 1,380 ms
25,216 KB
testcase_26 AC 1,290 ms
25,216 KB
testcase_27 AC 1,311 ms
25,088 KB
testcase_28 AC 1,339 ms
24,832 KB
testcase_29 AC 1,309 ms
25,088 KB
testcase_30 AC 84 ms
12,160 KB
testcase_31 AC 84 ms
12,032 KB
testcase_32 AC 1,362 ms
25,088 KB
testcase_33 AC 1,399 ms
25,088 KB
testcase_34 AC 1,457 ms
25,344 KB
testcase_35 AC 84 ms
12,032 KB
testcase_36 AC 84 ms
12,160 KB
testcase_37 AC 84 ms
12,032 KB
testcase_38 AC 84 ms
12,160 KB
testcase_39 AC 93 ms
12,160 KB
testcase_40 AC 93 ms
12,160 KB
testcase_41 AC 179 ms
13,056 KB
testcase_42 AC 180 ms
12,928 KB
testcase_43 AC 175 ms
12,928 KB
testcase_44 AC 172 ms
12,928 KB
testcase_45 AC 94 ms
12,160 KB
testcase_46 AC 191 ms
13,568 KB
testcase_47 AC 196 ms
13,440 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:3: 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{
#|s,u,t,i|[s,h[u]+=1,t,i]
|e|e[1]=h[e[1]]+=1;e
}.sort.map(&:last)[0,k]
0