結果

問題 No.179 塗り分け
ユーザー _matumo__matumo_
提出日時 2018-07-16 21:30:21
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,287 bytes
コンパイル時間 4,218 ms
コンパイル使用メモリ 107,892 KB
実行使用メモリ 28,284 KB
最終ジャッジ日時 2023-08-13 22:57:02
合計ジャッジ時間 11,477 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
21,932 KB
testcase_01 AC 61 ms
23,940 KB
testcase_02 AC 60 ms
21,848 KB
testcase_03 AC 60 ms
21,780 KB
testcase_04 AC 63 ms
21,940 KB
testcase_05 AC 76 ms
24,084 KB
testcase_06 AC 60 ms
22,000 KB
testcase_07 WA -
testcase_08 AC 210 ms
28,284 KB
testcase_09 AC 208 ms
26,100 KB
testcase_10 AC 63 ms
21,788 KB
testcase_11 AC 62 ms
19,808 KB
testcase_12 AC 214 ms
28,160 KB
testcase_13 AC 61 ms
21,868 KB
testcase_14 AC 61 ms
21,836 KB
testcase_15 AC 60 ms
24,064 KB
testcase_16 AC 61 ms
21,852 KB
testcase_17 AC 59 ms
22,032 KB
testcase_18 AC 69 ms
23,972 KB
testcase_19 AC 65 ms
21,968 KB
testcase_20 AC 202 ms
28,116 KB
testcase_21 AC 209 ms
28,060 KB
testcase_22 AC 219 ms
26,048 KB
testcase_23 AC 63 ms
21,848 KB
testcase_24 AC 200 ms
26,124 KB
testcase_25 AC 62 ms
21,796 KB
testcase_26 AC 83 ms
27,908 KB
testcase_27 AC 199 ms
28,160 KB
testcase_28 AC 68 ms
24,076 KB
testcase_29 AC 199 ms
28,272 KB
testcase_30 AC 118 ms
23,932 KB
testcase_31 AC 198 ms
28,108 KB
testcase_32 AC 100 ms
26,132 KB
testcase_33 AC 198 ms
26,124 KB
testcase_34 AC 87 ms
24,016 KB
testcase_35 AC 198 ms
28,148 KB
testcase_36 AC 61 ms
21,884 KB
testcase_37 AC 61 ms
23,876 KB
testcase_38 AC 61 ms
21,860 KB
testcase_39 AC 61 ms
23,884 KB
testcase_40 AC 60 ms
21,892 KB
testcase_41 AC 61 ms
23,908 KB
testcase_42 AC 61 ms
23,936 KB
testcase_43 AC 65 ms
21,904 KB
testcase_44 AC 79 ms
27,952 KB
testcase_45 AC 62 ms
21,992 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;
using System.Text;

namespace YukiCoder
{
    class Program
    {
        //------------------------------------------------------------------//
        static bool forXY(string S, int dY, int dX)
        {
            var va = S.Split().Select(a => a.ToCharArray()).ToArray();
            for (int y = 0; y < yMax; y++)
            {
                if (y + dY >= yMax) break;
                for (int x = 0; x < xMax; x++)
                {
                    if (x + dX < 0 || x + dX >= xMax)                   continue;
                    if (va[y][x] != '#')                                continue;
                    if (va[y + dY][x + dX] != '#')                      return false;
                    va[y][x] = va[y + dY][x + dX] = '.';
                }
            }
            for (int y = 0; y < yMax; y++)
            {
                for (int x = 0; x < xMax; x++)
                {
                    if (va[y][x] == '#') return false;
                }
            }
            return true;
        }
        //------------------------------------------------------------------//
        static bool forDxDy(string S)
        {
            for (int dy = 0; dy < yMax; dy++)
            {
                for (int dx = -xMax + 1; dx < xMax; dx++)
                {
                    if (dy == 0 && dx == 0) continue;
                    if (forXY(S, dy, dx)) return true;
                }
            }
            return false;
        }
        //------------------------------------------------------------------//
        static int yMax = 3;
        static int xMax = 3;
        static void Main(string[] args)
        {
            var va = Console.ReadLine().Trim().Split().Select(int.Parse).ToArray();
            yMax = va[0];
            xMax = va[1];
            string[] ps = new string[yMax];

            for (int i = 0; i < yMax; i++)
            {
                ps[i] = Console.ReadLine();
            }
            string S = string.Join(" ", ps);

            if (forDxDy(S)) Console.WriteLine("YES");
            else Console.WriteLine("NO");
            Console.ReadLine();
        }
        //------------------------------------------------------------------//
    }
}
0