結果

問題 No.870 無敵囲い
ユーザー Kaz_nlKaz_nl
提出日時 2019-11-07 21:12:05
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 28 ms / 300 ms
コード長 983 bytes
コンパイル時間 835 ms
コンパイル使用メモリ 111,236 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-06-29 06:34:57
合計ジャッジ時間 2,160 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
18,944 KB
testcase_01 AC 26 ms
18,816 KB
testcase_02 AC 27 ms
19,072 KB
testcase_03 AC 26 ms
18,944 KB
testcase_04 AC 27 ms
19,072 KB
testcase_05 AC 26 ms
18,944 KB
testcase_06 AC 27 ms
18,944 KB
testcase_07 AC 27 ms
18,944 KB
testcase_08 AC 27 ms
18,944 KB
testcase_09 AC 27 ms
18,944 KB
testcase_10 AC 27 ms
18,816 KB
testcase_11 AC 27 ms
18,944 KB
testcase_12 AC 27 ms
18,944 KB
testcase_13 AC 28 ms
18,944 KB
testcase_14 AC 27 ms
18,944 KB
testcase_15 AC 27 ms
18,944 KB
testcase_16 AC 27 ms
18,944 KB
testcase_17 AC 28 ms
18,944 KB
testcase_18 AC 27 ms
18,688 KB
testcase_19 AC 28 ms
18,816 KB
testcase_20 AC 27 ms
18,944 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.Linq;

class Program
{
    static void Main()
    {
        var a = new[] { 2, 8 };
        var b = new[] { 3, 9 };
        var c = new[] { 7, 9 };
        var n = int.Parse(Console.ReadLine());
        for (int i = 0; i < n; i++)
        {
            var d = Console.ReadLine().Split().Select(int.Parse).ToArray();
            if (a[0] == d[0] && a[1] == d[1])
            {
                a[0] = d[2];
                a[1] = d[3];
            }
            else if (b[0] == d[0] && b[1] == d[1])
            {
                b[0] = d[2];
                b[1] = d[3];
            }
            else if (c[0] == d[0] && c[1] == d[1])
            {
                c[0] = d[2];
                c[1] = d[3];
            }
        }
        if (a[0] == 5 && a[1] == 8 && b[0] == 4 && b[1] == 8 && c[0] == 6 && c[1] == 8)
        {
            Console.WriteLine("YES");
        }
        else
        {
            Console.WriteLine("NO");
        }
    }
}
0