結果

問題 No.1082 XORのXOR
ユーザー Common LispCommon Lisp
提出日時 2024-11-03 21:40:10
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 37,804 KB
実行使用メモリ 32,148 KB
最終ジャッジ日時 2024-11-03 21:40:12
合計ジャッジ時間 2,449 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
27,980 KB
testcase_01 AC 9 ms
27,980 KB
testcase_02 AC 8 ms
25,892 KB
testcase_03 AC 22 ms
28,232 KB
testcase_04 AC 24 ms
26,024 KB
testcase_05 AC 23 ms
26,156 KB
testcase_06 AC 22 ms
26,284 KB
testcase_07 AC 22 ms
28,236 KB
testcase_08 AC 23 ms
26,152 KB
testcase_09 AC 23 ms
26,280 KB
testcase_10 AC 22 ms
26,152 KB
testcase_11 AC 23 ms
32,148 KB
testcase_12 AC 22 ms
26,280 KB
testcase_13 AC 24 ms
26,156 KB
testcase_14 AC 29 ms
26,280 KB
testcase_15 AC 23 ms
30,140 KB
testcase_16 AC 23 ms
28,236 KB
testcase_17 AC 22 ms
26,152 KB
testcase_18 AC 23 ms
26,280 KB
testcase_19 AC 23 ms
30,244 KB
testcase_20 AC 22 ms
28,108 KB
testcase_21 AC 23 ms
27,984 KB
testcase_22 AC 22 ms
26,152 KB
testcase_23 AC 22 ms
26,156 KB
testcase_24 AC 23 ms
30,264 KB
testcase_25 AC 23 ms
28,108 KB
testcase_26 AC 22 ms
26,280 KB
testcase_27 AC 23 ms
28,060 KB
testcase_28 AC 10 ms
26,024 KB
testcase_29 AC 8 ms
26,028 KB
testcase_30 AC 9 ms
26,024 KB
testcase_31 AC 8 ms
25,900 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 03 NOV 2024 09:40:10 PM):

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

ソースコード

diff #

(defun main (&rest argv)
  (declare (ignorable argv))
  (let* ((n (read))
         (a (make-array n :element-type 'integer))
         (res 0))
    (dotimes (i n) (setf (aref a i) (read)))
    (loop for i below (1- n) do
          (loop for j from (1+ i) below n do
                (setf res (max res (logxor (aref a i) (aref a j))))))
    (format t "~d~%" res)))

(main)
0