結果

問題 No.82 市松模様
ユーザー phsplsphspls
提出日時 2020-03-27 00:01:56
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 29 ms / 5,000 ms
コード長 511 bytes
コンパイル時間 1,001 ms
コンパイル使用メモリ 114,524 KB
実行使用メモリ 27,560 KB
最終ジャッジ日時 2024-06-10 15:48:33
合計ジャッジ時間 1,781 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
27,416 KB
testcase_01 AC 27 ms
25,256 KB
testcase_02 AC 28 ms
25,252 KB
testcase_03 AC 29 ms
27,196 KB
testcase_04 AC 29 ms
27,172 KB
testcase_05 AC 28 ms
25,264 KB
testcase_06 AC 29 ms
25,136 KB
testcase_07 AC 28 ms
27,420 KB
testcase_08 AC 28 ms
25,260 KB
testcase_09 AC 28 ms
27,560 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

public class P0082 {
    public static void Main() {
        var whc = Console.ReadLine().Trim().Split(' ').ToList();
        var w = int.Parse(whc[0]);
        var h = int.Parse(whc[1]);
        var c = whc[2];
        var a = c == "W" ? "B" : "W";
        for(int i=0; i<h; i++) {
            Console.WriteLine(
                String.Join(
                    ""
                  , Enumerable.Range(0,w).Select(j => (i+j) % 2 == 0 ? c : a)
            ));
        }
    }
}
0