結果

問題 No.392 2分木をたどれ
ユーザー Common LispCommon Lisp
提出日時 2024-11-04 20:02:42
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 33,272 KB
実行使用メモリ 28,852 KB
最終ジャッジ日時 2024-11-04 20:02:43
合計ジャッジ時間 1,074 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
26,028 KB
testcase_01 AC 23 ms
28,852 KB
testcase_02 AC 23 ms
28,736 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 04 NOV 2024 08:02:42 PM):

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

ソースコード

diff #

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((m (read)))
    (dotimes (_ m)
      (let* ((a (read))
             (s ""))
        (loop while (/= a 0) do
              (let ((b a))
                (setf a (floor (1- a) 2))
                (if (= (1+ (* 2 a)) b)
                    (setf s (concatenate 'string s "L"))
                    (setf s (concatenate 'string s "R")))))
        (format t "~a~%" (reverse s))))))

(main)
0