結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー simansiman
提出日時 2015-01-10 22:54:30
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 219 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 20,480 KB
最終ジャッジ日時 2024-06-13 03:38:40
合計ジャッジ時間 3,938 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 86 ms
12,160 KB
testcase_03 AC 90 ms
12,288 KB
testcase_04 AC 86 ms
12,288 KB
testcase_05 AC 144 ms
20,480 KB
testcase_06 AC 87 ms
12,160 KB
testcase_07 AC 87 ms
12,288 KB
testcase_08 AC 89 ms
12,160 KB
testcase_09 AC 88 ms
12,160 KB
testcase_10 AC 88 ms
12,160 KB
testcase_11 AC 88 ms
12,288 KB
testcase_12 AC 88 ms
12,160 KB
testcase_13 AC 88 ms
12,416 KB
testcase_14 AC 126 ms
16,256 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 145 ms
18,816 KB
testcase_24 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:3: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

class A
  def initialize
    n = gets.chomp.to_i
    l = gets.chomp.split(' ').map(&:to_i)

    cache = Hash.new(false)

    p l.group_by{|i| cache[i] || cache[i] = l.count(i)}.first.last.uniq.sort.last
  end
end

A.new
0