結果

問題 No.593 4進FizzBuzz
ユーザー Common LispCommon Lisp
提出日時 2024-11-07 17:10:03
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 641 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 27,392 KB
実行使用メモリ 38,272 KB
最終ジャッジ日時 2024-11-07 17:10:09
合計ジャッジ時間 4,420 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
22,016 KB
testcase_01 AC 9 ms
22,016 KB
testcase_02 AC 9 ms
21,888 KB
testcase_03 AC 9 ms
22,016 KB
testcase_04 AC 9 ms
22,144 KB
testcase_05 AC 9 ms
22,016 KB
testcase_06 AC 9 ms
22,016 KB
testcase_07 AC 9 ms
22,016 KB
testcase_08 AC 9 ms
22,016 KB
testcase_09 AC 9 ms
22,016 KB
testcase_10 AC 9 ms
22,016 KB
testcase_11 AC 10 ms
21,888 KB
testcase_12 AC 9 ms
21,888 KB
testcase_13 AC 9 ms
22,016 KB
testcase_14 AC 8 ms
22,016 KB
testcase_15 AC 9 ms
22,016 KB
testcase_16 AC 95 ms
38,016 KB
testcase_17 AC 95 ms
38,144 KB
testcase_18 AC 95 ms
38,144 KB
testcase_19 AC 103 ms
38,272 KB
testcase_20 AC 94 ms
38,144 KB
testcase_21 AC 94 ms
38,144 KB
testcase_22 AC 102 ms
38,144 KB
testcase_23 AC 95 ms
38,144 KB
testcase_24 AC 95 ms
38,272 KB
testcase_25 AC 95 ms
38,144 KB
testcase_26 AC 103 ms
38,144 KB
testcase_27 AC 103 ms
38,144 KB
testcase_28 AC 95 ms
38,144 KB
testcase_29 AC 102 ms
38,144 KB
testcase_30 AC 96 ms
38,144 KB
testcase_31 AC 95 ms
38,272 KB
testcase_32 AC 96 ms
38,144 KB
testcase_33 AC 103 ms
38,144 KB
testcase_34 AC 95 ms
38,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 07 NOV 2024 05:10:04 PM):

; wrote /home/judge/data/code/Main.fasl
; compilation finished in 0:00:00.072

ソースコード

diff #

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((s (read-line))
         (3rd 0)
         (5th 0)
         (d 1))
    (loop for c across s do
          (let ((i (digit-char-p c)))
            (incf 3rd i)
            (incf 5th (* i d))
            (setf d (* d -1))))
    (format t "~a~%" (cond ((and (zerop (mod 3rd 3)) (zerop (mod 5th 5)))
                             "FizzBuzz")
                           ((zerop (mod 3rd 3))
                             "Fizz")
                           ((zerop (mod 5th 5))
                             "Buzz")
                           (t
                             s)))))

(main)
0