結果

問題 No.82 市松模様
コンテスト
ユーザー Takashi_Oda
提出日時 2026-06-06 19:52:06
言語 Common Lisp
(sbcl 2.6.3)
コンパイル:
sbclc _filename_
実行:
sbcl --script Main.fasl
結果
AC  
実行時間 7 ms / 5,000 ms
コード長 346 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 901 ms
コンパイル使用メモリ 31,232 KB
実行使用メモリ 22,272 KB
最終ジャッジ日時 2026-06-06 19:52:09
合計ジャッジ時間 2,051 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge1_1
純コード判定待ち
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 06 JUN 2026 07:52:06 PM):

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

ソースコード

diff #
raw source code

(defun colorcheck (i c) (if (zerop (mod i 2)) (if (equal c #\B) #\W #\B) c))

(defun ichimatsu (w c) (if (= w 1) (cons c nil) (cons (colorcheck w c) (ichimatsu (- w 1) c))))

(defun main () (let ((W (read)) (H (read)) (C (read-char)))
    (dotimes (i H) (format t "~A~%" (coerce (reverse (ichimatsu W (colorcheck (+ i 1) C))) 'string)))))

(main)
0