結果

問題 No.736 約比
ユーザー Common Lisp
提出日時 2024-11-10 02:12:50
言語 Common Lisp
(sbcl 2.5.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 1,077 ms
コンパイル使用メモリ 27,392 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-11-10 02:12:53
合計ジャッジ時間 2,410 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 65
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 10 NOV 2024 02:12:50 AM):

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

ソースコード

diff #

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((n (read))
         (a (loop repeat n collect (read)))
         (d (reduce #'gcd a)))
    (dotimes (i n)
      (setf (nth i a) (floor (nth i a) d)))
    (format t "~{~d~^:~}~%" a)))

(main)
0