結果
| 問題 | No.88 次はどっちだ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-04-11 21:35:20 |
| 言語 | Common Lisp (sbcl 2.6.3) |
| 結果 |
AC
|
| 実行時間 | 6 ms / 5,000 ms |
| コード長 | 376 bytes |
| 記録 | |
| コンパイル時間 | 267 ms |
| コンパイル使用メモリ | 34,244 KB |
| 実行使用メモリ | 28,404 KB |
| 最終ジャッジ日時 | 2026-07-08 15:52:31 |
| 合計ジャッジ時間 | 1,343 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 |
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 08 JUL 2026 03:52:29 PM): ; wrote /home/judge/data/code/Main.fasl ; compilation finished in 0:00:00.121
ソースコード
(defvar name) (setq name (read-line)) (defvar sente) (defvar gote) (setq sente name) (setq gote (if (string= sente "oda" ) "yukiko" "oda")) (defvar cnt) (setq cnt 0) (loop for char = (read-char nil nil) do (if (eq char nil) (return)) (if (or (eq char #\b) (eq char #\w)) (incf cnt)) ) (format t "~a~%" (if (oddp cnt) gote sente)) ;(print sente) ;(print gote) ;(print cnt)