結果

問題 No.2836 Comment Out
ユーザー Lisp_CoderLisp_Coder
提出日時 2024-08-09 23:32:47
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 684 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 35,400 KB
実行使用メモリ 39,340 KB
最終ジャッジ日時 2024-08-09 23:32:54
合計ジャッジ時間 7,194 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
30,140 KB
testcase_01 AC 17 ms
28,332 KB
testcase_02 AC 17 ms
32,548 KB
testcase_03 AC 18 ms
30,536 KB
testcase_04 AC 17 ms
30,268 KB
testcase_05 AC 18 ms
30,540 KB
testcase_06 AC 17 ms
30,248 KB
testcase_07 AC 62 ms
37,140 KB
testcase_08 AC 64 ms
35,860 KB
testcase_09 AC 162 ms
35,768 KB
testcase_10 AC 170 ms
36,060 KB
testcase_11 AC 162 ms
37,268 KB
testcase_12 AC 161 ms
37,016 KB
testcase_13 AC 159 ms
39,340 KB
testcase_14 AC 161 ms
36,024 KB
testcase_15 AC 161 ms
35,768 KB
testcase_16 AC 175 ms
35,640 KB
testcase_17 AC 171 ms
36,184 KB
testcase_18 AC 173 ms
39,176 KB
testcase_19 AC 166 ms
37,268 KB
testcase_20 AC 165 ms
35,708 KB
testcase_21 AC 165 ms
37,256 KB
testcase_22 AC 164 ms
37,268 KB
testcase_23 AC 174 ms
36,060 KB
testcase_24 AC 90 ms
31,652 KB
testcase_25 AC 106 ms
35,868 KB
testcase_26 AC 55 ms
31,652 KB
testcase_27 AC 118 ms
33,048 KB
testcase_28 AC 91 ms
32,916 KB
testcase_29 AC 113 ms
34,200 KB
testcase_30 AC 72 ms
33,048 KB
testcase_31 AC 110 ms
33,172 KB
testcase_32 AC 44 ms
33,172 KB
testcase_33 AC 72 ms
33,784 KB
testcase_34 AC 58 ms
31,268 KB
testcase_35 AC 136 ms
37,140 KB
testcase_36 AC 85 ms
31,908 KB
testcase_37 AC 134 ms
35,708 KB
testcase_38 AC 101 ms
35,372 KB
testcase_39 AC 80 ms
33,628 KB
testcase_40 AC 84 ms
33,044 KB
testcase_41 AC 116 ms
33,816 KB
testcase_42 AC 97 ms
37,000 KB
testcase_43 AC 44 ms
31,520 KB
testcase_44 AC 20 ms
30,272 KB
testcase_45 AC 18 ms
28,456 KB
testcase_46 AC 18 ms
30,540 KB
testcase_47 AC 18 ms
28,460 KB
testcase_48 AC 17 ms
30,412 KB
testcase_49 AC 16 ms
28,456 KB
testcase_50 AC 16 ms
28,328 KB
testcase_51 AC 17 ms
32,448 KB
testcase_52 AC 15 ms
28,328 KB
testcase_53 AC 17 ms
28,236 KB
testcase_54 AC 18 ms
28,452 KB
testcase_55 AC 19 ms
32,676 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 09 AUG 2024 11:32:47 PM):

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

ソースコード

diff #

#-swank
(unless (member :child-sbcl *features*)
  (quit
   :recklessly-p t
   :unix-status
   (process-exit-code
    (run-program *runtime-pathname*
                 `("--control-stack-size" "1024MB"
                   "--noinform" "--disable-ldb" "--lose-on-corruption" "--end-runtime-options"
                   "--eval" "(push :child-sbcl *features*)"
                   "--script" ,(namestring *load-pathname*))
                 :output t :error t :input t))))

(defun solve-game ()
  (let* ((n (read))
         (a (loop for i from 1 to n collect (read))))
    (if (or (eq 0 (apply 'min a)) (eq 1 (apply 'min a)))
      (format t "Yes~%")
      (format t "No~%"))))

(solve-game)
0