結果

問題 No.593 4進FizzBuzz
ユーザー 0w10w1
提出日時 2017-11-20 10:36:32
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 156 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 18,304 KB
最終ジャッジ日時 2024-05-04 15:04:40
合計ジャッジ時間 6,765 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 89 ms
12,032 KB
testcase_02 WA -
testcase_03 AC 88 ms
12,160 KB
testcase_04 AC 90 ms
12,288 KB
testcase_05 AC 89 ms
12,160 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 88 ms
12,288 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 88 ms
12,160 KB
testcase_13 WA -
testcase_14 AC 88 ms
12,032 KB
testcase_15 AC 93 ms
12,032 KB
testcase_16 WA -
testcase_17 AC 112 ms
17,920 KB
testcase_18 AC 113 ms
17,920 KB
testcase_19 AC 116 ms
17,920 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 117 ms
18,048 KB
testcase_23 AC 114 ms
17,536 KB
testcase_24 WA -
testcase_25 AC 113 ms
18,048 KB
testcase_26 WA -
testcase_27 AC 115 ms
18,048 KB
testcase_28 WA -
testcase_29 AC 118 ms
17,920 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 107 ms
18,048 KB
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n4 = gets.chop
n = n4.to_i 4
if n % 4 == 0 && n % 5 == 0
  puts "FizzBuzz"
elsif n % 4 == 0
  puts "Fizz"
elsif n % 5 == 0
  puts "Buzz"
else
  puts n4
end
0