結果
| 問題 | No.1432 Not Xor |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-03-19 21:47:31 |
| 言語 | Common Lisp (sbcl 2.6.3) |
| 結果 |
AC
|
| 実行時間 | 7 ms / 2,000 ms |
| コード長 | 87 bytes |
| 記録 | |
| コンパイル時間 | 345 ms |
| コンパイル使用メモリ | 28,928 KB |
| 実行使用メモリ | 22,528 KB |
| 最終ジャッジ日時 | 2026-05-13 08:19:13 |
| 合計ジャッジ時間 | 1,141 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 7 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 13 MAY 2026 08:19:12 AM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.071
ソースコード
(defun nxor (x y) (+ (logior x y) (logand x y))) (format t "~a~%" (nxor (read) (read)))