結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー d_nishiyama85d_nishiyama85
提出日時 2016-06-05 14:40:41
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 203 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-10-08 15:39:57
合計ジャッジ時間 4,464 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 142 ms
18,944 KB
testcase_02 AC 90 ms
12,416 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 139 ms
19,200 KB
testcase_06 AC 90 ms
12,032 KB
testcase_07 AC 90 ms
12,288 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 91 ms
12,288 KB
testcase_11 WA -
testcase_12 AC 88 ms
12,160 KB
testcase_13 AC 88 ms
12,160 KB
testcase_14 AC 120 ms
16,256 KB
testcase_15 AC 100 ms
13,696 KB
testcase_16 AC 131 ms
17,536 KB
testcase_17 AC 101 ms
13,568 KB
testcase_18 AC 131 ms
17,536 KB
testcase_19 AC 114 ms
15,744 KB
testcase_20 AC 139 ms
19,200 KB
testcase_21 AC 91 ms
12,416 KB
testcase_22 AC 107 ms
14,464 KB
testcase_23 AC 136 ms
18,432 KB
testcase_24 AC 135 ms
19,072 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:3: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

require 'pp'

n = gets.to_i
max = gets.split(' ')
           .map{|e| e.to_i}
           .group_by{|e| e}
           .map{|k, e| [k, e.length]}
           .to_h
           .max_by{|k, v| v}

puts max[0]
0