結果

問題 No.82 市松模様
ユーザー Common LispCommon Lisp
提出日時 2024-10-07 22:17:44
言語 Common Lisp
(sbcl 2.3.8)
結果
AC  
実行時間 11 ms / 5,000 ms
コード長 727 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 33,000 KB
実行使用メモリ 29,880 KB
最終ジャッジ日時 2024-10-07 22:17:46
合計ジャッジ時間 1,098 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
27,852 KB
testcase_01 AC 8 ms
25,640 KB
testcase_02 AC 8 ms
25,768 KB
testcase_03 AC 9 ms
29,752 KB
testcase_04 AC 10 ms
29,880 KB
testcase_05 AC 8 ms
25,768 KB
testcase_06 AC 10 ms
27,852 KB
testcase_07 AC 11 ms
27,724 KB
testcase_08 AC 10 ms
29,864 KB
testcase_09 AC 9 ms
25,768 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
; compiling file "/home/judge/data/code/Main.lisp" (written 07 OCT 2024 10:17:44 PM):

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

ソースコード

diff #

; 市松模様は
; a11 a12 ... a1w
; a21 a22 ... a2w
; ... ... aij ...
; ah1 ah2 ... ahw
; という座標のとき (i + j) の偶奇によって W か B が決まる
(defun main ()
  (let* ((w (read))
         (h (read))
         ; read-char &optional input-stream eof-error-p eof-value recursive-p ⇒ char
         ; 入力ストリームから1文字読み込む
         (c (read-char))
         ; char= 文字を比較する 同じであれば t
         (d (if (char= c #\B) #\W #\B)))
    (dotimes (i h)
      (dotimes (j w)
        ; write-char 出力ストリームへ1文字出力
        (write-char
              ; evenp 偶数かどうか判定する
          (if (evenp (+ i j)) c d)))
      (terpri))))
(main)
0