結果

問題 No.2322 MMA文字列
ユーザー KitataiKitatai
提出日時 2023-05-28 13:48:00
言語 Common Lisp
(sbcl 2.3.8)
結果
WA  
実行時間 -
コード長 101 bytes
コンパイル時間 1,280 ms
コンパイル使用メモリ 36,788 KB
実行使用メモリ 29,756 KB
最終ジャッジ日時 2024-06-08 04:09:48
合計ジャッジ時間 2,120 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
21,632 KB
testcase_01 AC 8 ms
21,632 KB
testcase_02 WA -
testcase_03 AC 9 ms
21,632 KB
testcase_04 AC 9 ms
21,632 KB
testcase_05 AC 9 ms
21,504 KB
testcase_06 AC 9 ms
21,760 KB
testcase_07 AC 8 ms
21,632 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 9 ms
21,632 KB
testcase_12 AC 8 ms
21,632 KB
testcase_13 AC 9 ms
21,632 KB
testcase_14 AC 9 ms
21,632 KB
testcase_15 AC 8 ms
21,760 KB
testcase_16 WA -
testcase_17 AC 9 ms
21,632 KB
testcase_18 AC 9 ms
21,760 KB
testcase_19 AC 9 ms
21,632 KB
testcase_20 AC 9 ms
21,760 KB
testcase_21 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 08 JUN 2024 04:09:45 AM):

; file: /home/judge/data/code/Main.lisp
; in: DEFUN SOLVE
;     (DEFUN SOLVE (A B C)
;       (IF (EQUAL A B)
;           "Yes"
;           "No"))
; --> SB-IMPL::%DEFUN SB-IMPL::%DEFUN SB-INT:NAMED-LAMBDA 
; ==>
;   #'(SB-INT:NAMED-LAMBDA SOLVE
;         (A B C)
;       (DECLARE (SB-C::TOP-LEVEL-FORM))
;       (BLOCK SOLVE
;         (IF (EQUAL A B)
;             "Yes"
;             "No")))
; 
; caught STYLE-WARNING:
;   The variable C is defined but never used.
; 
; compilation unit finished
;   caught 1 STYLE-WARNING condition


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

ソースコード

diff #

(defun solve (a b c) (if (equal a b) "Yes" "No"))
(princ (solve (read-char) (read-char) (read-char)))
0