結果

問題 No.2922 Rose Garden
ユーザー Common LispCommon Lisp
提出日時 2024-10-17 21:45:39
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 155 ms / 3,000 ms
コード長 353 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 37,124 KB
実行使用メモリ 34,740 KB
最終ジャッジ日時 2024-10-17 21:45:46
合計ジャッジ時間 5,940 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
28,640 KB
testcase_01 AC 59 ms
34,724 KB
testcase_02 AC 84 ms
32,720 KB
testcase_03 AC 155 ms
30,696 KB
testcase_04 AC 83 ms
28,644 KB
testcase_05 AC 77 ms
34,720 KB
testcase_06 AC 53 ms
30,680 KB
testcase_07 AC 113 ms
28,644 KB
testcase_08 AC 33 ms
32,404 KB
testcase_09 AC 122 ms
30,700 KB
testcase_10 AC 61 ms
32,720 KB
testcase_11 AC 30 ms
26,408 KB
testcase_12 AC 84 ms
28,648 KB
testcase_13 AC 107 ms
28,644 KB
testcase_14 AC 30 ms
26,276 KB
testcase_15 AC 79 ms
32,692 KB
testcase_16 AC 112 ms
28,644 KB
testcase_17 AC 130 ms
32,728 KB
testcase_18 AC 15 ms
26,020 KB
testcase_19 AC 62 ms
28,648 KB
testcase_20 AC 90 ms
28,648 KB
testcase_21 AC 128 ms
30,688 KB
testcase_22 AC 77 ms
32,696 KB
testcase_23 AC 119 ms
30,684 KB
testcase_24 AC 27 ms
28,236 KB
testcase_25 AC 66 ms
28,648 KB
testcase_26 AC 100 ms
32,720 KB
testcase_27 AC 106 ms
32,720 KB
testcase_28 AC 110 ms
34,600 KB
testcase_29 AC 83 ms
30,552 KB
testcase_30 AC 14 ms
30,116 KB
testcase_31 AC 10 ms
26,028 KB
testcase_32 AC 12 ms
25,892 KB
testcase_33 AC 8 ms
25,896 KB
testcase_34 AC 15 ms
26,024 KB
testcase_35 AC 10 ms
26,024 KB
testcase_36 AC 22 ms
26,148 KB
testcase_37 AC 22 ms
32,148 KB
testcase_38 AC 13 ms
26,024 KB
testcase_39 AC 17 ms
26,024 KB
testcase_40 AC 89 ms
30,684 KB
testcase_41 AC 49 ms
32,712 KB
testcase_42 AC 136 ms
32,728 KB
testcase_43 AC 63 ms
28,640 KB
testcase_44 AC 130 ms
32,728 KB
testcase_45 AC 32 ms
30,528 KB
testcase_46 AC 140 ms
34,740 KB
testcase_47 AC 109 ms
32,692 KB
testcase_48 AC 30 ms
30,524 KB
testcase_49 AC 126 ms
32,588 KB
testcase_50 AC 10 ms
30,016 KB
testcase_51 AC 9 ms
27,856 KB
testcase_52 AC 9 ms
27,720 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 17 OCT 2024 09:45:39 PM):

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

ソースコード

diff #

(defun main ()
  (let* ((n (read))
         (s (read))
         (b (read))
         (h (read))
         (xs (loop repeat (1- n) collect (read)))
         (m h))
    (loop for a in xs
          if (> a (+ m (* b s)))
            do (progn (princ "No") (terpri) (return-from main))
          do (setq m (max m a)))
    (princ "Yes")
    (terpri)))
(main)
0