結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 90 ms
12,032 KB
testcase_02 WA -
testcase_03 AC 79 ms
12,160 KB
testcase_04 AC 80 ms
12,032 KB
testcase_05 AC 77 ms
12,032 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 79 ms
11,904 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 79 ms
12,032 KB
testcase_13 WA -
testcase_14 AC 78 ms
12,032 KB
testcase_15 AC 83 ms
12,288 KB
testcase_16 WA -
testcase_17 AC 102 ms
18,176 KB
testcase_18 AC 99 ms
17,792 KB
testcase_19 AC 105 ms
17,920 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 101 ms
17,920 KB
testcase_23 AC 99 ms
17,408 KB
testcase_24 WA -
testcase_25 AC 112 ms
18,176 KB
testcase_26 WA -
testcase_27 AC 102 ms
18,048 KB
testcase_28 WA -
testcase_29 AC 107 ms
18,176 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 104 ms
17,920 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