結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー osyo-mangaosyo-manga
提出日時 2023-07-21 18:43:26
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 163 bytes
コンパイル時間 52 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-09-21 20:19:44
合計ジャッジ時間 3,474 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 138 ms
18,560 KB
testcase_02 AC 87 ms
12,416 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 119 ms
18,560 KB
testcase_06 AC 85 ms
12,288 KB
testcase_07 AC 84 ms
12,416 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 84 ms
12,416 KB
testcase_11 WA -
testcase_12 AC 85 ms
12,416 KB
testcase_13 AC 87 ms
12,416 KB
testcase_14 AC 110 ms
16,512 KB
testcase_15 AC 95 ms
13,696 KB
testcase_16 AC 119 ms
17,536 KB
testcase_17 AC 99 ms
13,440 KB
testcase_18 AC 116 ms
17,152 KB
testcase_19 AC 104 ms
15,616 KB
testcase_20 AC 123 ms
18,688 KB
testcase_21 AC 87 ms
12,288 KB
testcase_22 AC 97 ms
14,336 KB
testcase_23 AC 122 ms
18,432 KB
testcase_24 AC 122 ms
18,560 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# 入力された値を受け取る
# N の値は無視してもらって OK
N = gets.chomp.to_i
Ls = gets.chomp.split.map(&:to_i).tally

pp Ls.key(Ls.values.max)
0