結果

問題 No.458 異なる素数の和
ユーザー Common LispCommon Lisp
提出日時 2024-11-14 01:38:06
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 600 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 37,412 KB
実行使用メモリ 30,376 KB
最終ジャッジ日時 2024-11-14 01:38:18
合計ジャッジ時間 6,133 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
26,152 KB
testcase_01 AC 156 ms
30,368 KB
testcase_02 AC 174 ms
28,364 KB
testcase_03 AC 156 ms
28,320 KB
testcase_04 AC 156 ms
26,408 KB
testcase_05 AC 155 ms
26,152 KB
testcase_06 AC 156 ms
28,364 KB
testcase_07 AC 155 ms
26,276 KB
testcase_08 AC 156 ms
28,364 KB
testcase_09 AC 157 ms
26,152 KB
testcase_10 AC 157 ms
28,364 KB
testcase_11 AC 156 ms
28,368 KB
testcase_12 AC 155 ms
26,408 KB
testcase_13 AC 155 ms
26,284 KB
testcase_14 AC 157 ms
28,236 KB
testcase_15 AC 156 ms
26,284 KB
testcase_16 AC 156 ms
26,152 KB
testcase_17 AC 157 ms
26,280 KB
testcase_18 AC 156 ms
26,276 KB
testcase_19 AC 155 ms
26,156 KB
testcase_20 AC 155 ms
26,148 KB
testcase_21 AC 155 ms
26,280 KB
testcase_22 AC 156 ms
26,280 KB
testcase_23 AC 156 ms
28,232 KB
testcase_24 AC 156 ms
30,368 KB
testcase_25 AC 155 ms
28,364 KB
testcase_26 AC 156 ms
30,244 KB
testcase_27 AC 156 ms
26,148 KB
testcase_28 AC 155 ms
28,368 KB
testcase_29 AC 154 ms
26,276 KB
testcase_30 AC 156 ms
30,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 14 NOV 2024 01:38:11 AM):

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

ソースコード

diff #

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((n (read))
         (dp (make-array 20001 :element-type 'integer :initial-element -123))
         (sieve (make-array 20001 :initial-element nil)))
    (setf (aref dp 0) 0)
    (loop for i from 2 to 20000 do
          (loop for j from (* i i) to 20000 by i do
                (setf (aref sieve j) t))
          (unless (aref sieve i)
                  (loop for j from (- 20000 i) downto 0 do
                        (setf (aref dp (+ i j)) (max (1+ (aref dp j)) (aref dp (+ i j)))))))
    (format t "~d~%" (max -1 (aref dp n)))))

(main)
0