結果
問題 | No.412 花火大会 |
ユーザー | Common Lisp |
提出日時 | 2024-11-13 19:00:07 |
言語 | Common Lisp (sbcl 2.3.8) |
結果 |
AC
|
実行時間 | 14 ms / 2,000 ms |
コード長 | 851 bytes |
コンパイル時間 | 399 ms |
コンパイル使用メモリ | 60,304 KB |
実行使用メモリ | 22,144 KB |
最終ジャッジ日時 | 2024-11-13 19:00:09 |
合計ジャッジ時間 | 1,937 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
22,016 KB |
testcase_01 | AC | 9 ms
22,016 KB |
testcase_02 | AC | 9 ms
21,888 KB |
testcase_03 | AC | 9 ms
22,016 KB |
testcase_04 | AC | 10 ms
22,016 KB |
testcase_05 | AC | 10 ms
22,016 KB |
testcase_06 | AC | 9 ms
21,888 KB |
testcase_07 | AC | 9 ms
21,888 KB |
testcase_08 | AC | 9 ms
21,888 KB |
testcase_09 | AC | 9 ms
22,016 KB |
testcase_10 | AC | 9 ms
22,016 KB |
testcase_11 | AC | 9 ms
22,016 KB |
testcase_12 | AC | 9 ms
21,888 KB |
testcase_13 | AC | 9 ms
22,016 KB |
testcase_14 | AC | 9 ms
22,016 KB |
testcase_15 | AC | 9 ms
21,888 KB |
testcase_16 | AC | 14 ms
22,016 KB |
testcase_17 | AC | 9 ms
22,016 KB |
testcase_18 | AC | 9 ms
21,888 KB |
testcase_19 | AC | 12 ms
22,144 KB |
testcase_20 | AC | 9 ms
21,888 KB |
testcase_21 | AC | 9 ms
21,888 KB |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 13 NOV 2024 07:00:07 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.074
ソースコード
(defun main (&rest argv) (declare (ignorable argv)) (let* ((b (read)) (c (read)) (d (read)) (n (read)) (a (sort (make-array 3 :initial-contents (list b c d)) #'<)) (e (make-array n :element-type 'integer)) (res 0)) (dotimes (i n) (setf (aref e i) (read))) (sort e #'<) (loop for i from (1- n) downto 2 when (>= (aref e i) (aref a 2)) do (loop for j from (1- i) downto 1 when (>= (aref e j) (aref a 1)) do (loop for k from (1- j) downto 0 when (>= (aref e k) (aref a 0)) do (let ((f 1)) (dotimes (l k) (setq f (* f 2))) (incf res f))))) (format t "~d~%" res))) (main)