結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー tshigtshig
提出日時 2016-08-02 15:48:48
言語 Ruby
(3.3.0)
結果
AC  
実行時間 206 ms / 5,000 ms
コード長 344 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 20,352 KB
最終ジャッジ日時 2024-06-26 08:01:17
合計ジャッジ時間 4,310 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
12,288 KB
testcase_01 AC 202 ms
19,712 KB
testcase_02 AC 93 ms
12,160 KB
testcase_03 AC 94 ms
12,288 KB
testcase_04 AC 94 ms
12,160 KB
testcase_05 AC 206 ms
20,352 KB
testcase_06 AC 91 ms
12,160 KB
testcase_07 AC 92 ms
12,288 KB
testcase_08 AC 92 ms
12,288 KB
testcase_09 AC 91 ms
12,288 KB
testcase_10 AC 92 ms
12,416 KB
testcase_11 AC 97 ms
12,160 KB
testcase_12 AC 92 ms
12,288 KB
testcase_13 AC 92 ms
12,288 KB
testcase_14 AC 162 ms
16,896 KB
testcase_15 AC 118 ms
14,336 KB
testcase_16 AC 180 ms
18,432 KB
testcase_17 AC 116 ms
14,080 KB
testcase_18 AC 175 ms
18,176 KB
testcase_19 AC 152 ms
16,512 KB
testcase_20 AC 202 ms
20,224 KB
testcase_21 AC 95 ms
12,288 KB
testcase_22 AC 131 ms
14,976 KB
testcase_23 AC 198 ms
19,328 KB
testcase_24 AC 200 ms
19,840 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Calc0079
  def initialize(args)
    args = args.map { |l| l.chomp.split(/\s+/) }
    @n = args.shift.first.to_i
    @ls = args.shift.map(&:to_i)
  end

  def run
    hs = @ls.group_by(&:itself).map {|l, g| [l, g.size] }
    hs.sort_by { |h| [-h[1], -h[0]] }.first.first
  end
end

puts Calc0079.new(STDIN.readlines).run if __FILE__ == $0
0