結果

問題 No.1699 Unfair RPS
ユーザー harurunharurun
提出日時 2021-09-16 12:29:37
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 94 bytes
コンパイル時間 886 ms
コンパイル使用メモリ 24,828 KB
実行使用メモリ 27,612 KB
最終ジャッジ日時 2023-09-30 09:34:57
合計ジャッジ時間 1,616 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
25,572 KB
testcase_01 AC 8 ms
25,552 KB
testcase_02 AC 9 ms
23,488 KB
testcase_03 AC 9 ms
23,532 KB
testcase_04 AC 9 ms
27,612 KB
testcase_05 AC 9 ms
23,540 KB
testcase_06 AC 8 ms
23,496 KB
testcase_07 AC 8 ms
23,628 KB
testcase_08 AC 9 ms
23,588 KB
testcase_09 AC 7 ms
23,604 KB
testcase_10 AC 9 ms
27,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 30 SEP 2023 09:34:55 AM):
; processing (DEFUN SOLVE ...)
; processing (FORMAT T ...)

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

ソースコード

diff #

(defun solve (x y)
  (if (= x y)
    "Yes"
    "No"))

(format t "~A~%" (solve (read) (read)))
0