結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | Common Lisp |
提出日時 | 2024-10-23 11:43:48 |
言語 | Common Lisp (sbcl 2.3.8) |
結果 |
AC
|
実行時間 | 27 ms / 5,000 ms |
コード長 | 1,224 bytes |
コンパイル時間 | 421 ms |
コンパイル使用メモリ | 37,808 KB |
実行使用メモリ | 30,500 KB |
最終ジャッジ日時 | 2024-10-23 11:43:50 |
合計ジャッジ時間 | 1,898 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
27,980 KB |
testcase_01 | AC | 8 ms
26,024 KB |
testcase_02 | AC | 25 ms
30,500 KB |
testcase_03 | AC | 10 ms
26,156 KB |
testcase_04 | AC | 9 ms
26,028 KB |
testcase_05 | AC | 11 ms
26,152 KB |
testcase_06 | AC | 15 ms
26,280 KB |
testcase_07 | AC | 14 ms
30,240 KB |
testcase_08 | AC | 12 ms
28,360 KB |
testcase_09 | AC | 17 ms
26,408 KB |
testcase_10 | AC | 8 ms
26,024 KB |
testcase_11 | AC | 11 ms
28,236 KB |
testcase_12 | AC | 22 ms
28,492 KB |
testcase_13 | AC | 23 ms
30,372 KB |
testcase_14 | AC | 27 ms
26,408 KB |
testcase_15 | AC | 25 ms
26,536 KB |
testcase_16 | AC | 25 ms
28,496 KB |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 23 OCT 2024 11:43:48 AM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.090
ソースコード
(defun prime (x) (let ((primes (make-array (1+ x) :initial-contents (loop for i from 0 to x collect (if (evenp i) 2 i))))) (setf (aref primes 0) 1) (loop for i from 3 to (+ 2 (isqrt x)) by 2 do (when (= (aref primes i) i) (loop for j from (* 2 i) to x by i do (when (= (aref primes j) j) (setf (aref primes j) i))))) (loop for i from 2 to x when (= (aref primes i) i) collect i))) (defun main (&rest argv) (declare (ignorable argv)) (let* ((n (read)) (primes (prime (1+ n))) (dp (make-array (1+ n) :initial-element 0))) (setf (aref dp 0) 1) (setf (aref dp 1) 1) (loop for i from 2 to n do (block inner (loop for p in primes do (when (> p i) (return-from inner)) (when (zerop (aref dp (- i p))) (setf (aref dp i) 1) (return-from inner))))) (format t "~A~%" (if (zerop (aref dp n)) "Lose" "Win")))) #-swank(main)