結果

問題 No.593 4進FizzBuzz
ユーザー gemmarogemmaro
提出日時 2020-07-17 09:32:36
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,666 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 138,752 KB
最終ジャッジ日時 2024-05-05 18:15:17
合計ジャッジ時間 26,625 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,416 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 87 ms
12,160 KB
testcase_04 AC 87 ms
12,160 KB
testcase_05 AC 88 ms
12,160 KB
testcase_06 AC 88 ms
12,160 KB
testcase_07 AC 88 ms
12,288 KB
testcase_08 AC 86 ms
12,032 KB
testcase_09 AC 85 ms
12,416 KB
testcase_10 AC 89 ms
12,416 KB
testcase_11 AC 85 ms
12,160 KB
testcase_12 AC 87 ms
12,032 KB
testcase_13 AC 88 ms
12,160 KB
testcase_14 AC 86 ms
12,160 KB
testcase_15 AC 88 ms
12,160 KB
testcase_16 AC 919 ms
138,624 KB
testcase_17 AC 911 ms
138,624 KB
testcase_18 AC 915 ms
138,752 KB
testcase_19 AC 1,647 ms
138,368 KB
testcase_20 AC 914 ms
138,752 KB
testcase_21 AC 918 ms
138,752 KB
testcase_22 AC 1,637 ms
138,368 KB
testcase_23 AC 916 ms
138,752 KB
testcase_24 AC 916 ms
138,624 KB
testcase_25 AC 915 ms
138,624 KB
testcase_26 AC 1,645 ms
138,496 KB
testcase_27 AC 1,645 ms
138,624 KB
testcase_28 AC 913 ms
138,752 KB
testcase_29 AC 1,646 ms
138,624 KB
testcase_30 AC 911 ms
138,496 KB
testcase_31 AC 917 ms
138,624 KB
testcase_32 AC 914 ms
138,624 KB
testcase_33 AC 1,666 ms
138,624 KB
testcase_34 AC 917 ms
138,624 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Array
  def dividable_by_3
    (sum % 3).zero?
  end

  def dividable_by_5
    (alternating_sum % 5).zero?
  end

  def alternating_sum
    x = 0
    is_positive = true

    each do |i|
      if is_positive
        x += i
        is_positive = false
      else
        x -= i
        is_positive = true
      end
    end

    x
  end
end

def solve
  tmp = (N.dividable_by_3 ? 'Fizz' : '') + (N.dividable_by_5 ? 'Buzz' : '')
  tmp == '' ? N.join : tmp
end

N = gets.chomp.chars.map(&:to_i)

puts solve
0