結果

問題 No.2811 Calculation Within Sequence
ユーザー Common LispCommon Lisp
提出日時 2024-11-06 23:39:05
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 388 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 1,014 ms
コンパイル使用メモリ 27,520 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-11-06 23:39:22
合計ジャッジ時間 14,113 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
21,760 KB
testcase_01 AC 8 ms
21,760 KB
testcase_02 AC 8 ms
21,760 KB
testcase_03 AC 338 ms
28,160 KB
testcase_04 AC 328 ms
28,160 KB
testcase_05 AC 339 ms
28,288 KB
testcase_06 AC 388 ms
28,032 KB
testcase_07 AC 336 ms
28,288 KB
testcase_08 AC 351 ms
28,288 KB
testcase_09 AC 375 ms
28,288 KB
testcase_10 AC 353 ms
28,160 KB
testcase_11 AC 339 ms
28,032 KB
testcase_12 AC 366 ms
28,160 KB
testcase_13 AC 335 ms
28,160 KB
testcase_14 AC 328 ms
28,160 KB
testcase_15 AC 339 ms
28,032 KB
testcase_16 AC 342 ms
28,160 KB
testcase_17 AC 330 ms
28,160 KB
testcase_18 AC 348 ms
28,160 KB
testcase_19 AC 370 ms
28,032 KB
testcase_20 AC 327 ms
28,288 KB
testcase_21 AC 333 ms
28,160 KB
testcase_22 AC 332 ms
28,160 KB
testcase_23 AC 360 ms
28,032 KB
testcase_24 AC 218 ms
25,472 KB
testcase_25 AC 73 ms
22,912 KB
testcase_26 AC 88 ms
23,168 KB
testcase_27 AC 222 ms
25,728 KB
testcase_28 AC 43 ms
22,528 KB
testcase_29 AC 191 ms
24,704 KB
testcase_30 AC 169 ms
24,832 KB
testcase_31 AC 186 ms
24,832 KB
testcase_32 AC 50 ms
22,656 KB
testcase_33 AC 162 ms
24,704 KB
testcase_34 AC 201 ms
25,472 KB
testcase_35 AC 100 ms
23,552 KB
testcase_36 AC 178 ms
24,704 KB
testcase_37 AC 128 ms
23,936 KB
testcase_38 AC 131 ms
24,192 KB
testcase_39 AC 128 ms
24,064 KB
testcase_40 AC 180 ms
25,088 KB
testcase_41 AC 205 ms
25,600 KB
testcase_42 AC 99 ms
23,552 KB
testcase_43 AC 136 ms
24,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 06 NOV 2024 11:39:08 PM):

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

ソースコード

diff #

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((a (read))
         (b (read))
         (xs (loop repeat a collect (read)))
         (d (reduce #'gcd xs))
         (ys (loop repeat b collect (read))))
    (dolist (y ys)
      (unless (zerop (mod y d))
        (format t "No~%")
        (return-from main)))
    (format t "Yes~%")))

(main)
0