結果
問題 | No.17 2つの地点に泊まりたい |
ユーザー | Common Lisp |
提出日時 | 2024-11-08 23:25:20 |
言語 | Common Lisp (sbcl 2.3.8) |
結果 |
AC
|
実行時間 | 16 ms / 5,000 ms |
コード長 | 1,148 bytes |
コンパイル時間 | 1,449 ms |
コンパイル使用メモリ | 39,936 KB |
実行使用メモリ | 24,320 KB |
最終ジャッジ日時 | 2024-11-08 23:25:24 |
合計ジャッジ時間 | 2,673 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
21,760 KB |
testcase_01 | AC | 9 ms
21,760 KB |
testcase_02 | AC | 9 ms
21,760 KB |
testcase_03 | AC | 16 ms
24,320 KB |
testcase_04 | AC | 10 ms
21,760 KB |
testcase_05 | AC | 11 ms
22,016 KB |
testcase_06 | AC | 10 ms
21,760 KB |
testcase_07 | AC | 10 ms
21,760 KB |
testcase_08 | AC | 12 ms
21,888 KB |
testcase_09 | AC | 12 ms
21,888 KB |
testcase_10 | AC | 12 ms
22,400 KB |
testcase_11 | AC | 12 ms
22,272 KB |
testcase_12 | AC | 9 ms
21,760 KB |
testcase_13 | AC | 9 ms
21,760 KB |
testcase_14 | AC | 9 ms
21,760 KB |
testcase_15 | AC | 9 ms
21,760 KB |
testcase_16 | AC | 9 ms
21,888 KB |
testcase_17 | AC | 11 ms
22,144 KB |
testcase_18 | AC | 15 ms
24,192 KB |
testcase_19 | AC | 15 ms
24,320 KB |
testcase_20 | AC | 10 ms
22,144 KB |
testcase_21 | AC | 10 ms
21,888 KB |
testcase_22 | AC | 15 ms
24,320 KB |
testcase_23 | AC | 11 ms
21,888 KB |
testcase_24 | AC | 11 ms
22,144 KB |
testcase_25 | AC | 9 ms
21,888 KB |
testcase_26 | AC | 11 ms
21,888 KB |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 08 NOV 2024 11:25:21 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.209
ソースコード
(defconstant +inf+ 9876543218987654321) (defun main (&rest argv) (declare (ignorable argv)) (let* ((n (read)) (s (make-array n :element-type 'integer))) (dotimes (i n) (setf (aref s i) (read))) (let* ((m (read)) (d (make-array (list n n) :element-type 'integer :initial-element +inf+)) (res +inf+)) (dotimes (i n) (setf (aref d i i) 0)) (dotimes (i m) (let* ((a (read)) (b (read)) (c (read))) (setf (aref d a b) c (aref d b a) c))) (dotimes (i n) (dotimes (j n) (dotimes (k n) (setf (aref d j k) (min (aref d j k) (+ (aref d j i) (aref d i k))))))) (loop for i from 1 below (1- n) do (loop for j from 1 below (1- n) do (unless (= i j) (setq res (min res (+ (aref d 0 i) (aref s i) (aref d i j) (aref s j) (aref d j (1- n)))))))) (format t "~d~%" res)))) (main)