結果
問題 | No.82 市松模様 |
ユーザー | Rin |
提出日時 | 2015-08-25 23:54:31 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
WA
|
実行時間 | - |
コード長 | 548 bytes |
コンパイル時間 | 39 ms |
コンパイル使用メモリ | 5,376 KB |
実行使用メモリ | 16,384 KB |
最終ジャッジ日時 | 2024-07-18 14:36:32 |
合計ジャッジ時間 | 783 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
16,000 KB |
testcase_01 | WA | - |
testcase_02 | AC | 26 ms
15,872 KB |
testcase_03 | AC | 25 ms
15,872 KB |
testcase_04 | WA | - |
testcase_05 | AC | 24 ms
15,872 KB |
testcase_06 | WA | - |
testcase_07 | AC | 21 ms
16,000 KB |
testcase_08 | AC | 24 ms
16,128 KB |
testcase_09 | WA | - |
ソースコード
(define (System.out.println x) (begin (display x) (newline) ) ) (define W "W") (define B "B") (define (CngClr C) (if (eq? C W) B W ) ) (let ( (W (read)) (H (read)) (C (read)) ) (let loop((i 1) (j 1) (Color C)) (begin (display Color) (if (= i W) (if (= j H) (newline) (begin (newline) (loop 1 (+ j 1) Color) ) ) (loop (+ i 1) j (CngClr Color)) ) ) ) )