結果

問題 No.82 市松模様
ユーザー aketijyuuzouaketijyuuzou
提出日時 2024-10-10 22:35:00
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 1,625 bytes
コンパイル時間 994 ms
コンパイル使用メモリ 110,788 KB
実行使用メモリ 26,076 KB
最終ジャッジ日時 2024-10-10 22:35:02
合計ジャッジ時間 2,211 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,160 KB
testcase_01 AC 26 ms
23,784 KB
testcase_02 AC 26 ms
24,160 KB
testcase_03 AC 26 ms
23,900 KB
testcase_04 AC 27 ms
25,952 KB
testcase_05 AC 26 ms
23,852 KB
testcase_06 AC 26 ms
24,164 KB
testcase_07 AC 28 ms
26,076 KB
testcase_08 AC 31 ms
26,072 KB
testcase_09 AC 30 ms
26,076 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.Collections.Generic;
using System.Linq;

class Program
{
    static string InputPattern = "InputX";

    static List<string> GetInputList()
    {
        var WillReturn = new List<string>();

        if (InputPattern == "Input1") {
            WillReturn.Add("4 3 B");
            //BWBW
            //WBWB
            //BWBW
            //左上が黒'B'で幅が4、高さが3の市松模様が描けた
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("3 4 W");
            //WBW
            //BWB
            //WBW
            //BWB
            //左上が白'W'で幅が3、高さが4の市松模様が描けた
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("1 1 W");
            //W
            //見た目として市松模様では無いが答えとしては正しいとする
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        string[] wkArr = InputList[0].Split(' ');
        int W = int.Parse(wkArr[0]);
        int H = int.Parse(wkArr[1]);
        char C = char.Parse(wkArr[2]);

        for (int Y = 0; Y <= H - 1; Y++) {
            for (int X = 0; X <= W - 1; X++) {
                bool IsEven = ((X + Y) % 2 == 0);
                if (C == 'B') Console.Write(IsEven ? 'B' : 'W');
                else Console.Write(IsEven ? 'W' : 'B');
            }
            Console.WriteLine();
        }
    }
}

0