結果

問題 No.3022 縛りFizzBuzz (Easy)
ユーザー くれちーくれちー
提出日時 2018-03-20 14:59:35
言語 Nim
(2.0.2)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 2,990 ms
コンパイル使用メモリ 64,320 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 04:56:31
合計ジャッジ時間 3,895 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

from strutils import parseInt

const zero = "".len
const one = ".".len
const three = "...".len
const five = ".....".len

let n = stdin.readLine.parseInt

for i in one .. n:
    let str =
        if i mod three == zero and i mod five == zero: "FizzBuzz"
        elif i mod three == zero: "Fizz"
        elif i mod five == zero: "Buzz"
        else: $i
    str.echo
0