結果
問題 | No.3022 縛りFizzBuzz (Easy) |
ユーザー | nobigomu |
提出日時 | 2018-02-24 13:17:37 |
言語 | Lua (LuaJit 2.1.1696795921) |
結果 |
WA
|
実行時間 | - |
コード長 | 444 bytes |
コンパイル時間 | 169 ms |
コンパイル使用メモリ | 6,688 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-13 08:03:04 |
合計ジャッジ時間 | 909 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
6,820 KB |
ソースコード
local a = _G._VERSION:sub(#_G._VERSION) local one = tonumber(a) local zero = one - one local three = one + one + one local five = three + one + one local hundred = tonumber(a .. zero .. zero) for i=one,hundred 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