結果

問題 No.240 ナイト散歩
ユーザー mbanmban
提出日時 2016-12-23 14:48:13
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 1,372 bytes
コンパイル時間 1,158 ms
コンパイル使用メモリ 112,716 KB
実行使用メモリ 28,472 KB
最終ジャッジ日時 2024-10-07 21:33:36
合計ジャッジ時間 3,269 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
26,120 KB
testcase_01 AC 29 ms
25,996 KB
testcase_02 AC 28 ms
24,116 KB
testcase_03 AC 28 ms
25,868 KB
testcase_04 AC 27 ms
25,996 KB
testcase_05 AC 28 ms
25,992 KB
testcase_06 AC 28 ms
28,208 KB
testcase_07 AC 28 ms
28,100 KB
testcase_08 AC 30 ms
27,780 KB
testcase_09 AC 28 ms
26,124 KB
testcase_10 AC 30 ms
25,908 KB
testcase_11 AC 30 ms
26,128 KB
testcase_12 AC 31 ms
25,912 KB
testcase_13 AC 31 ms
28,088 KB
testcase_14 AC 29 ms
25,996 KB
testcase_15 AC 29 ms
25,996 KB
testcase_16 AC 30 ms
27,952 KB
testcase_17 AC 30 ms
26,036 KB
testcase_18 AC 31 ms
25,900 KB
testcase_19 AC 28 ms
26,248 KB
testcase_20 AC 29 ms
28,208 KB
testcase_21 AC 28 ms
28,164 KB
testcase_22 AC 29 ms
27,784 KB
testcase_23 AC 29 ms
26,412 KB
testcase_24 AC 28 ms
25,904 KB
testcase_25 AC 28 ms
28,088 KB
testcase_26 AC 30 ms
26,376 KB
testcase_27 AC 29 ms
26,296 KB
testcase_28 AC 29 ms
23,988 KB
testcase_29 AC 27 ms
28,292 KB
testcase_30 AC 28 ms
28,164 KB
testcase_31 AC 29 ms
26,412 KB
testcase_32 AC 29 ms
27,916 KB
testcase_33 AC 31 ms
28,472 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;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;

class Magatro
{
    static int[] IdouX = new int[8] { -2, -2, -1, -1, 1, 1, 2, 2 };
    static int[] IdouY = new int[8] { -1, 1, -2, 2, -2, 2, -1, 1 };
    static void Main()
    {
        XY P;
        string[] s = Console.ReadLine().Split(' ');
        P.X = long.Parse(s[0]);
        P.Y = long.Parse(s[1]);
        HashSet<XY>[] Hs = new HashSet<XY>[4];
        for(int i = 0; i < 4; i++)
        {
            Hs[i] = new HashSet<XY>();
        }
        Hs[0].Add(new XY(0, 0));
        for(int i = 1; i <= 3; i++)
        {
            foreach(XY v in Hs[i-1].ToArray())
            {
             
                for(int j = 0; j < 8; j++)
                {
                    XY q = v;
                    q.X += IdouX[j];
                    q.Y += IdouY[j];
                    Hs[i].Add(q);
                }
            }
        }
        for (int i = 0; i < 4; i++)
        {
            if (Hs[i].Contains(P))
            {
                Console.WriteLine("YES");
                return;
            }
        }
        Console.WriteLine("NO");


    }

}
struct XY
{
    public long X, Y;
    public XY(long x,long y)
    {
        X = x;
        Y = y;
    }
}
0