結果

問題 No.82 市松模様
ユーザー curryudon08curryudon08
提出日時 2020-06-23 17:19:58
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 30 ms / 5,000 ms
コード長 713 bytes
コンパイル時間 833 ms
コンパイル使用メモリ 109,320 KB
実行使用メモリ 26,024 KB
最終ジャッジ日時 2024-07-03 19:22:01
合計ジャッジ時間 1,742 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,112 KB
testcase_01 AC 26 ms
26,024 KB
testcase_02 AC 25 ms
23,920 KB
testcase_03 AC 25 ms
23,792 KB
testcase_04 AC 25 ms
26,000 KB
testcase_05 AC 25 ms
22,068 KB
testcase_06 AC 25 ms
23,668 KB
testcase_07 AC 25 ms
23,920 KB
testcase_08 AC 30 ms
23,924 KB
testcase_09 AC 30 ms
23,856 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace _0082
{
    class Program
    {
        static void Main(string[] args)
        {
            var _ = Console.ReadLine().Split();
            var w = int.Parse(_[0]);
            var h = int.Parse(_[1]);
            var c = _[2];

            var m1 = c.Equals("B") ? "BW" : "WB";
            var m2 = c.Equals("B") ? "WB" : "BW";

            for(var i = 0; i < h; i++){
                for(var j = 0; j < w; j++){
                    if(i % 2 == 0){
                        Console.Write(m1[j % 2]);
                    }else{
                        Console.Write(m2[j % 2]);
                    }
                }
                Console.Write("\n");
            }
        }
    }
}
0