結果

問題 No.458 異なる素数の和
ユーザー Common LispCommon Lisp
提出日時 2024-11-14 01:35:06
言語 Common Lisp
(sbcl 2.3.8)
結果
WA  
実行時間 -
コード長 598 bytes
コンパイル時間 540 ms
コンパイル使用メモリ 39,284 KB
実行使用メモリ 30,272 KB
最終ジャッジ日時 2024-11-14 01:35:13
合計ジャッジ時間 6,778 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

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

ソースコード

diff #

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((n (read))
         (dp (make-array 20001 :element-type 'integer :initial-element -1))
         (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