結果

問題 No.643 Two Operations No.2
ユーザー Common LispCommon Lisp
提出日時 2024-11-06 23:14:36
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 1,100 bytes
コンパイル時間 588 ms
コンパイル使用メモリ 28,672 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-11-06 23:14:37
合計ジャッジ時間 1,428 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
21,632 KB
testcase_01 AC 9 ms
21,632 KB
testcase_02 AC 9 ms
21,632 KB
testcase_03 AC 9 ms
21,632 KB
testcase_04 AC 9 ms
21,760 KB
testcase_05 AC 9 ms
21,760 KB
testcase_06 AC 9 ms
21,760 KB
testcase_07 AC 9 ms
21,760 KB
testcase_08 AC 9 ms
21,760 KB
testcase_09 AC 8 ms
21,760 KB
testcase_10 AC 9 ms
21,760 KB
testcase_11 AC 9 ms
21,760 KB
testcase_12 AC 9 ms
21,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 06 NOV 2024 11:14:35 PM):

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

ソースコード

diff #

(defun check (x y M)
  (let* ((a (first M))
         (b (second M))
         (c (third M))
         (d (fourth M)))
    (= (+ (* a x) (* b y))
       (+ (* c x) (* d y)))))

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((x (read))
         (y (read))
         (E '(1 0 0 1))
         (A '(0 1 1 0))
         (B '(1 1 1 -1))
         (A*B '(1 -1 1 1))
         (B*A '(1 1 -1 1))
         (A*B*A '(-1 1 1 1))
         (B*A*B '(2 0 0 -2))
         (A*B*A*B '(0 -2 2 0)))
    (format t "~d~%" (cond ((check x y E)
                             0)
                           ((or (check x y A)
                                (check x y B))
                             1)
                           ((or (check x y A*B)
                                (check x y B*A))
                             2)
                           ((or (check x y A*B*A)
                                (check x y B*A*B))
                             3)
                           ((check x y A*B*A*B)
                             4)
                           (t
                             -1)))))

(main)
0