結果

問題 No.519 アイドルユニット
ユーザー Common LispCommon Lisp
提出日時 2024-11-14 21:24:12
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 366 ms / 1,000 ms
コード長 830 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 35,856 KB
実行使用メモリ 161,968 KB
最終ジャッジ日時 2024-11-14 21:24:17
合計ジャッジ時間 4,547 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
158,012 KB
testcase_01 AC 366 ms
157,756 KB
testcase_02 AC 70 ms
63,376 KB
testcase_03 AC 15 ms
28,716 KB
testcase_04 AC 10 ms
25,896 KB
testcase_05 AC 10 ms
25,896 KB
testcase_06 AC 10 ms
25,900 KB
testcase_07 AC 10 ms
26,024 KB
testcase_08 AC 10 ms
26,028 KB
testcase_09 AC 11 ms
26,024 KB
testcase_10 AC 12 ms
26,412 KB
testcase_11 AC 16 ms
32,652 KB
testcase_12 AC 11 ms
29,884 KB
testcase_13 AC 16 ms
32,800 KB
testcase_14 AC 15 ms
28,592 KB
testcase_15 AC 16 ms
30,628 KB
testcase_16 AC 16 ms
32,648 KB
testcase_17 AC 15 ms
28,720 KB
testcase_18 AC 15 ms
28,720 KB
testcase_19 AC 16 ms
28,720 KB
testcase_20 AC 16 ms
28,720 KB
testcase_21 AC 15 ms
32,540 KB
testcase_22 AC 15 ms
28,588 KB
testcase_23 AC 15 ms
28,592 KB
testcase_24 AC 28 ms
40,920 KB
testcase_25 AC 27 ms
34,836 KB
testcase_26 AC 27 ms
34,580 KB
testcase_27 AC 27 ms
38,916 KB
testcase_28 AC 27 ms
34,836 KB
testcase_29 AC 365 ms
161,968 KB
testcase_30 AC 337 ms
158,012 KB
testcase_31 AC 338 ms
161,964 KB
testcase_32 AC 339 ms
159,804 KB
testcase_33 AC 11 ms
25,640 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 14 NOV 2024 09:24:12 PM):

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

ソースコード

diff #

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((n (read))
         (f (make-array (list n n) :element-type 'integer))
         (s 0)
         (dp (make-array (ash 1 n) :element-type 'integer :initial-element -1)))
    (dotimes (i n)
      (dotimes (j n)
        (setf (aref f i j) (read))))
    (setf (aref dp 0) 0)
    (dotimes (i (ash 1 n))
      (when (>= (aref dp i) 0)
            (dotimes (j n)
              (when (zerop (logand i (ash 1 j)))
                    (setq s j)
                    (return)))
            (loop for j from (1+ s) below n
                  when (zerop (logand i (ash 1 j)))
                    do (setf (aref dp (logior i (ash 1 s) (ash 1 j))) (max (aref dp (logior i (ash 1 s) (ash 1 j))) (+ (aref dp i) (aref f s j)))))))
    (format t "~d~%" (aref dp (1- (ash 1 n))))))

(main)
0