結果
| 問題 | No.2322 MMA文字列 |
| コンテスト | |
| ユーザー |
Kitatai
|
| 提出日時 | 2023-05-28 13:52:24 |
| 言語 | Common Lisp (sbcl 2.6.3) |
| 結果 |
AC
|
| 実行時間 | 7 ms / 2,000 ms |
| コード長 | 125 bytes |
| 記録 | |
| コンパイル時間 | 430 ms |
| コンパイル使用メモリ | 29,440 KB |
| 実行使用メモリ | 22,016 KB |
| 最終ジャッジ日時 | 2026-06-01 18:08:34 |
| 合計ジャッジ時間 | 1,387 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 01 JUN 2026 06:08:32 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.003
ソースコード
(defun solve (a b c) (if (and (equal a b) (not (equal a c))) "Yes" "No")) (princ (solve (read-char) (read-char) (read-char)))
Kitatai