結果

問題 No.706 多眼生物の調査
ユーザー gemmarogemmaro
提出日時 2024-06-07 18:22:53
言語 Ruby
(3.3.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-06-07 18:22:56
合計ジャッジ時間 1,319 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,288 KB
testcase_01 AC 82 ms
12,288 KB
testcase_02 AC 81 ms
12,160 KB
testcase_03 AC 81 ms
12,288 KB
testcase_04 AC 81 ms
12,032 KB
testcase_05 AC 83 ms
12,800 KB
testcase_06 AC 93 ms
12,800 KB
testcase_07 AC 84 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
SIZE = 1000
eyes = Array.new(SIZE, 0)
(1..N).each do
  s = gets.chomp.size - 2
  eyes[s] += 1
end
max_eye = 0
last_index = 0
(0..SIZE - 1).each do |index|
  eye = eyes[index]
  eye < max_eye and next
  max_eye = eye
  last_index = index
end
puts last_index
0