結果

問題 No.593 4進FizzBuzz
ユーザー maimai
提出日時 2017-08-01 06:48:00
言語 Ruby
(3.3.0)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 110,848 KB
最終ジャッジ日時 2024-10-14 13:42:10
合計ジャッジ時間 6,792 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,032 KB
testcase_01 AC 78 ms
12,288 KB
testcase_02 AC 81 ms
12,160 KB
testcase_03 AC 79 ms
12,160 KB
testcase_04 AC 78 ms
12,032 KB
testcase_05 AC 79 ms
12,160 KB
testcase_06 AC 78 ms
12,288 KB
testcase_07 AC 79 ms
12,160 KB
testcase_08 AC 83 ms
12,288 KB
testcase_09 AC 79 ms
12,160 KB
testcase_10 AC 79 ms
12,160 KB
testcase_11 AC 77 ms
12,160 KB
testcase_12 AC 77 ms
12,288 KB
testcase_13 AC 77 ms
12,160 KB
testcase_14 AC 78 ms
12,288 KB
testcase_15 AC 78 ms
12,288 KB
testcase_16 AC 186 ms
110,720 KB
testcase_17 AC 177 ms
110,592 KB
testcase_18 AC 178 ms
110,720 KB
testcase_19 AC 178 ms
110,592 KB
testcase_20 AC 176 ms
110,464 KB
testcase_21 AC 178 ms
110,592 KB
testcase_22 AC 178 ms
110,592 KB
testcase_23 AC 181 ms
110,592 KB
testcase_24 AC 189 ms
110,720 KB
testcase_25 AC 178 ms
110,848 KB
testcase_26 AC 181 ms
110,720 KB
testcase_27 AC 182 ms
110,592 KB
testcase_28 AC 177 ms
110,720 KB
testcase_29 AC 181 ms
110,592 KB
testcase_30 AC 171 ms
110,720 KB
testcase_31 AC 178 ms
110,592 KB
testcase_32 AC 169 ms
110,592 KB
testcase_33 AC 174 ms
110,592 KB
testcase_34 AC 179 ms
110,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

str = gets.chomp!
abort "EOF" unless !gets
abort "Format error" unless str=~/^[0-3]+$/

e = str.to_i(4)

puts e%15 == 0 ? "FizzBuzz" : (e%5 == 0 ? "Buzz" : (e%3 == 0 ? "Fizz" : str))
0