結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー clj_kunclj_kun
提出日時 2022-02-17 11:02:56
言語 Clojure(Beta)
(1.11.2)
結果
AC  
実行時間 2,511 ms / 5,000 ms
コード長 387 bytes
コンパイル時間 40 ms
コンパイル使用メモリ 6,684 KB
実行使用メモリ 73,392 KB
最終ジャッジ日時 2024-06-29 07:32:35
合計ジャッジ時間 13,656 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,511 ms
73,192 KB
testcase_01 AC 2,492 ms
73,392 KB
testcase_02 AC 2,471 ms
73,184 KB
testcase_03 AC 2,509 ms
73,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(defn can-div [x y]
    (= 0
        (rem x y)
    )
)
(defn fizz-buzz [n]
    (let
        [three (can-div n 3) five (can-div n 5)]
        (cond
            (and three five) "FizzBuzz"
            three "Fizz"
            five "Buzz"
            :else (str n)
        )
    )
)
(def n
    (Integer. (read-line))
)
(doseq [i (range 1 (+ n 1))]
    (println
        (fizz-buzz i)
    )
)
0