結果

問題 No.179 塗り分け
ユーザー _matumo__matumo_
提出日時 2018-07-16 21:45:37
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 227 ms / 3,000 ms
コード長 2,361 bytes
コンパイル時間 1,121 ms
コンパイル使用メモリ 113,140 KB
実行使用メモリ 31,436 KB
最終ジャッジ日時 2024-07-23 14:50:04
合計ジャッジ時間 5,992 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
25,140 KB
testcase_01 AC 29 ms
25,008 KB
testcase_02 AC 29 ms
27,052 KB
testcase_03 AC 28 ms
23,088 KB
testcase_04 AC 29 ms
27,056 KB
testcase_05 AC 44 ms
29,380 KB
testcase_06 AC 30 ms
27,056 KB
testcase_07 AC 227 ms
31,184 KB
testcase_08 AC 176 ms
31,292 KB
testcase_09 AC 180 ms
29,380 KB
testcase_10 AC 32 ms
25,008 KB
testcase_11 AC 32 ms
23,228 KB
testcase_12 AC 181 ms
31,420 KB
testcase_13 AC 31 ms
23,216 KB
testcase_14 AC 30 ms
25,268 KB
testcase_15 AC 27 ms
24,880 KB
testcase_16 AC 29 ms
25,136 KB
testcase_17 AC 27 ms
27,124 KB
testcase_18 AC 34 ms
27,192 KB
testcase_19 AC 34 ms
25,136 KB
testcase_20 AC 170 ms
29,124 KB
testcase_21 AC 179 ms
29,132 KB
testcase_22 AC 189 ms
29,376 KB
testcase_23 AC 32 ms
25,008 KB
testcase_24 AC 173 ms
31,416 KB
testcase_25 AC 30 ms
25,264 KB
testcase_26 AC 50 ms
29,252 KB
testcase_27 AC 170 ms
29,120 KB
testcase_28 AC 36 ms
26,928 KB
testcase_29 AC 169 ms
31,436 KB
testcase_30 AC 89 ms
31,168 KB
testcase_31 AC 170 ms
31,292 KB
testcase_32 AC 68 ms
29,264 KB
testcase_33 AC 167 ms
29,244 KB
testcase_34 AC 56 ms
27,204 KB
testcase_35 AC 168 ms
31,168 KB
testcase_36 AC 30 ms
25,016 KB
testcase_37 AC 30 ms
27,180 KB
testcase_38 AC 29 ms
25,136 KB
testcase_39 AC 30 ms
26,932 KB
testcase_40 AC 29 ms
25,140 KB
testcase_41 AC 30 ms
24,904 KB
testcase_42 AC 30 ms
25,392 KB
testcase_43 AC 33 ms
25,008 KB
testcase_44 AC 48 ms
31,300 KB
testcase_45 AC 30 ms
25,004 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)
        {
            bool isSharp = false;

            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] = '.';
                    isSharp = true;
                }
            }
            for (int y = 0; y < yMax; y++)
            {
                for (int x = 0; x < xMax; x++)
                {
                    if (va[y][x] == '#') return false;
                }
            }
            return isSharp;
        }
        //------------------------------------------------------------------//
        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