結果

問題 No.351 市松スライドパズル
ユーザー NoNo
提出日時 2018-01-24 01:36:31
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 747 ms / 2,000 ms
コード長 1,362 bytes
コンパイル時間 824 ms
コンパイル使用メモリ 113,568 KB
実行使用メモリ 78,156 KB
最終ジャッジ日時 2024-06-07 19:22:00
合計ジャッジ時間 10,712 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 647 ms
66,992 KB
testcase_01 AC 26 ms
23,980 KB
testcase_02 AC 25 ms
23,720 KB
testcase_03 AC 26 ms
24,244 KB
testcase_04 AC 26 ms
23,988 KB
testcase_05 AC 26 ms
23,988 KB
testcase_06 AC 26 ms
26,016 KB
testcase_07 AC 26 ms
24,116 KB
testcase_08 AC 25 ms
23,988 KB
testcase_09 AC 26 ms
24,248 KB
testcase_10 AC 25 ms
23,964 KB
testcase_11 AC 25 ms
24,092 KB
testcase_12 AC 26 ms
26,136 KB
testcase_13 AC 729 ms
71,200 KB
testcase_14 AC 724 ms
71,288 KB
testcase_15 AC 739 ms
71,944 KB
testcase_16 AC 739 ms
75,984 KB
testcase_17 AC 730 ms
74,036 KB
testcase_18 AC 747 ms
76,228 KB
testcase_19 AC 735 ms
78,156 KB
testcase_20 AC 740 ms
73,932 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace y
{
    class Program
    {
        static void Main(string[] args)
        {
            string[] ss = Console.ReadLine().Split();
            int h = int.Parse(ss[0]);
            int w = int.Parse(ss[1]);
            int n = int.Parse(Console.ReadLine());


            string[] a = new string[n];
            for (int i = 0; i < n; i++)
            {
                a[i] = Console.ReadLine();
            }

            int x = 0, y = h - 1;
            for (int i = n - 1; i >= 0; i--)
            {
                ss = a[i].Split();
                if (ss[0] == "R" && (h - 1) - int.Parse(ss[1]) == y)
                {
                    x = x - 1;
                    if (x < 0) x = w - 1;
                }
                if (ss[0] == "C" && int.Parse(ss[1]) == x)
                {
                    y = y + 1;
                    if (y > h - 1) y = 0;
                }
            }
            string ans = "";
            if (x % 2 == 1)
            {
                ans = y % 2 == 0 ? "white" : "black";
            }
            else
            {
                ans = y % 2 == 1 ? "white" : "black";
            }

            if (h % 2 == 1)
            {
                if (ans == "black") ans = "white";
                else ans = "black";
            }

            Console.WriteLine(ans);
        }
    }
}
0