結果

問題 No.490 yukiソート
コンテスト
ユーザー Common Lisp
提出日時 2024-11-14 12:51:49
言語 Common Lisp
(sbcl 2.6.3)
コンパイル:
sbclc _filename_
実行:
sbcl --script Main.fasl
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 444 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,535 ms
コンパイル使用メモリ 30,080 KB
実行使用メモリ 22,400 KB
最終ジャッジ日時 2026-05-10 00:33:24
合計ジャッジ時間 3,578 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 34
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 10 MAY 2026 12:33:19 AM):

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

ソースコード

diff #
raw source code

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((n (read))
         (a (make-array n))
         (b))
    (dotimes (i n) (setf (aref a i) (cons i (read))))
    (sort a #'< :key #'cdr)
    (when (/= (1- n) (car (aref a (1- n))))
          (setf b (aref a (1- n))
                (aref a (1- n)) (aref a (- n 2))
                (aref a (- n 2)) b))
    (dotimes (i n)
      (format t "~d " (cdr (aref a i))))
    (terpri)))

(main)
0