結果

問題 No.3022 縛りFizzBuzz (Easy)
ユーザー nobigomunobigomu
提出日時 2018-02-24 13:21:10
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-21 09:21:35
合計ジャッジ時間 1,218 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local one = tonumber(_G._VERSION:sub(#_G._VERSION))
local zero = one - one
local three = one + one + one
local five = three + one + one

local n = tonumber(io.stdin:read("*l"))

for i=one,n do
    local isF, isB = i % three == zero, i % five == zero

    if isF and isB then
        print("FizzBuzz")
    elseif isF then
        print("Fizz")
    elseif isB then
        print("Buzz")
    else
        print(i)
    end
end
0