結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー takaboujptakaboujp
提出日時 2016-12-20 11:13:33
言語 Ruby
(3.3.0)
結果
AC  
実行時間 96 ms / 5,000 ms
コード長 285 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-05-08 08:33:07
合計ジャッジ時間 977 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
12,160 KB
testcase_01 AC 95 ms
12,160 KB
testcase_02 AC 95 ms
12,160 KB
testcase_03 AC 96 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:13: warning: mismatched indentations at 'else' with 'if' at 5
Main.rb:15: warning: mismatched indentations at 'end' with 'else' at 13
Syntax OK

ソースコード

diff #

GET_NUMBER = gets.to_i

GET_NUMBER.times do |i|
  current_number = i + 1
  if current_number % 3 == 0
    if current_number % 5 == 0
      puts 'FizzBuzz'
    else
      puts 'Fizz'
    end
  elsif current_number % 5 == 0
      puts 'Buzz'
    else
      puts current_number
  end
end
0