結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー nonokai10nonokai10
提出日時 2018-02-26 04:23:56
言語 Ruby
(3.3.0)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 112 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 11,376 KB
実行使用メモリ 21,292 KB
最終ジャッジ日時 2023-09-08 15:20:49
合計ジャッジ時間 3,847 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
15,332 KB
testcase_01 AC 126 ms
21,092 KB
testcase_02 AC 82 ms
15,124 KB
testcase_03 AC 78 ms
15,168 KB
testcase_04 AC 80 ms
15,040 KB
testcase_05 AC 129 ms
21,244 KB
testcase_06 AC 80 ms
15,156 KB
testcase_07 AC 79 ms
15,148 KB
testcase_08 AC 80 ms
15,144 KB
testcase_09 AC 79 ms
15,128 KB
testcase_10 AC 80 ms
15,064 KB
testcase_11 AC 80 ms
15,264 KB
testcase_12 AC 82 ms
15,168 KB
testcase_13 AC 79 ms
15,156 KB
testcase_14 AC 104 ms
18,676 KB
testcase_15 AC 89 ms
16,560 KB
testcase_16 AC 111 ms
19,472 KB
testcase_17 AC 87 ms
16,160 KB
testcase_18 AC 111 ms
19,392 KB
testcase_19 AC 109 ms
18,196 KB
testcase_20 AC 127 ms
21,292 KB
testcase_21 AC 81 ms
15,040 KB
testcase_22 AC 97 ms
16,980 KB
testcase_23 AC 125 ms
20,840 KB
testcase_24 AC 126 ms
20,884 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets
vote = Array.new(6, 0)
gets.split.map(&:to_i).each { |i| vote[i - 1] += 1 }
puts vote.rindex(vote.max) + 1
0