結果

問題 No.231 めぐるはめぐる (1)
コンテスト
ユーザー code-devo
提出日時 2016-01-06 19:42:36
言語 Ruby
(4.0.2)
コンパイル:
ruby -w -c _filename_
実行:
ruby _filename_
結果
AC  
実行時間 80 ms / 1,000 ms
コード長 226 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 69 ms
コンパイル使用メモリ 9,216 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2026-05-08 07:27:30
合計ジャッジ時間 2,796 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 11
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #
raw source code

gets

a = $stdin.read.lines
          .map.with_index{|s, idx| g, d = s.split.map(&:to_i); [g - 30000 * d, idx + 1]}
          .sort.reverse[0]
if a[0] * 6 >= 3_000_000 then
  puts "YES"
  puts [a[1]] * 6
else
  puts "NO"
end
0