結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー higesawahigesawa
提出日時 2023-08-04 18:03:55
言語 Ruby
(3.3.0)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 627 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 19,456 KB
最終ジャッジ日時 2024-10-14 15:13:45
合計ジャッジ時間 4,260 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
12,160 KB
testcase_01 AC 139 ms
19,456 KB
testcase_02 AC 90 ms
12,160 KB
testcase_03 AC 91 ms
12,032 KB
testcase_04 AC 92 ms
12,160 KB
testcase_05 AC 133 ms
19,456 KB
testcase_06 AC 89 ms
12,032 KB
testcase_07 AC 90 ms
12,032 KB
testcase_08 AC 92 ms
12,032 KB
testcase_09 AC 92 ms
12,288 KB
testcase_10 AC 91 ms
12,032 KB
testcase_11 AC 90 ms
12,032 KB
testcase_12 AC 91 ms
12,032 KB
testcase_13 AC 90 ms
12,160 KB
testcase_14 AC 124 ms
16,640 KB
testcase_15 AC 101 ms
13,568 KB
testcase_16 AC 127 ms
18,048 KB
testcase_17 AC 104 ms
13,184 KB
testcase_18 AC 127 ms
18,048 KB
testcase_19 AC 112 ms
15,744 KB
testcase_20 AC 137 ms
19,456 KB
testcase_21 AC 92 ms
12,032 KB
testcase_22 AC 107 ms
14,336 KB
testcase_23 AC 134 ms
19,072 KB
testcase_24 AC 137 ms
19,328 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.chomp.to_i

Ls = gets.chomp.split.map(&:to_i) # => [1, 2, 3, 4, 1,]

counts = Ls.uniq.map{|item| [item, Ls.count(item)]}.to_h # => {1=>2, 2=>1, 3=>1, 4=>1}

# 任意の値が2個以上あるか確認する
values = counts.values # => [2, 1, 1, 1] 値のみを取り出す

# 最も大きい値が配列の中に1つしかない場合、キーを参照しputする
# 最もおきい値が2個以上の場合、あればキーを参照し、キーの数値が大きい方をputする
if values.count(values.max) == 1
  puts counts.key(values.max)
else
  puts counts.select { |k,value| value == values.max }.keys.max
end
0