結果

問題 No.593 4進FizzBuzz
ユーザー ldsybldsyb
提出日時 2017-11-11 13:04:16
言語 Ruby
(3.3.0)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 125 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 11,356 KB
実行使用メモリ 19,308 KB
最終ジャッジ日時 2023-08-16 07:35:09
合計ジャッジ時間 6,728 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
15,304 KB
testcase_01 AC 79 ms
15,328 KB
testcase_02 AC 81 ms
15,128 KB
testcase_03 AC 86 ms
15,156 KB
testcase_04 AC 79 ms
15,252 KB
testcase_05 AC 80 ms
15,300 KB
testcase_06 AC 81 ms
15,136 KB
testcase_07 AC 79 ms
15,052 KB
testcase_08 AC 81 ms
15,044 KB
testcase_09 AC 79 ms
15,080 KB
testcase_10 AC 80 ms
15,300 KB
testcase_11 AC 79 ms
15,308 KB
testcase_12 AC 79 ms
15,132 KB
testcase_13 AC 80 ms
15,224 KB
testcase_14 AC 79 ms
15,112 KB
testcase_15 AC 79 ms
15,084 KB
testcase_16 AC 106 ms
18,572 KB
testcase_17 AC 109 ms
19,124 KB
testcase_18 AC 106 ms
18,972 KB
testcase_19 AC 113 ms
19,208 KB
testcase_20 AC 104 ms
18,164 KB
testcase_21 AC 106 ms
18,784 KB
testcase_22 AC 109 ms
19,308 KB
testcase_23 AC 105 ms
18,140 KB
testcase_24 AC 108 ms
19,064 KB
testcase_25 AC 112 ms
19,168 KB
testcase_26 AC 109 ms
19,268 KB
testcase_27 AC 108 ms
19,112 KB
testcase_28 AC 103 ms
18,348 KB
testcase_29 AC 109 ms
19,220 KB
testcase_30 AC 98 ms
18,296 KB
testcase_31 AC 103 ms
18,784 KB
testcase_32 AC 103 ms
19,180 KB
testcase_33 AC 105 ms
19,016 KB
testcase_34 AC 100 ms
18,852 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i 4
if n % 15 == 0
	puts "FizzBuzz"
elsif n % 3 == 0
	puts "Fizz"
elsif n % 5 == 0
	puts "Buzz"
else
	puts $_
end
0