結果

問題 No.232 めぐるはめぐる (2)
ユーザー nokonokonokonoko
提出日時 2015-07-01 00:29:27
言語 C#(csc)
(csc 3.9.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 2,364 bytes
コンパイル時間 983 ms
コンパイル使用メモリ 110,644 KB
実行使用メモリ 26,264 KB
最終ジャッジ日時 2024-07-07 21:31:56
合計ジャッジ時間 6,103 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 524 ms
23,988 KB
testcase_01 AC 541 ms
24,060 KB
testcase_02 AC 526 ms
24,060 KB
testcase_03 AC 527 ms
21,624 KB
testcase_04 AC 21 ms
23,672 KB
testcase_05 AC 22 ms
25,840 KB
testcase_06 AC 22 ms
21,936 KB
testcase_07 AC 21 ms
23,956 KB
testcase_08 AC 394 ms
25,972 KB
testcase_09 AC 23 ms
23,832 KB
testcase_10 AC 22 ms
23,968 KB
testcase_11 AC 22 ms
23,924 KB
testcase_12 AC 22 ms
25,968 KB
testcase_13 AC 22 ms
24,060 KB
testcase_14 AC 21 ms
23,804 KB
testcase_15 AC 22 ms
25,964 KB
testcase_16 AC 21 ms
22,068 KB
testcase_17 WA -
testcase_18 AC 31 ms
23,836 KB
testcase_19 AC 22 ms
25,872 KB
testcase_20 AC 22 ms
26,132 KB
testcase_21 AC 21 ms
23,668 KB
testcase_22 AC 22 ms
25,880 KB
testcase_23 AC 21 ms
23,924 KB
testcase_24 AC 22 ms
23,840 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 YukiCoderNo232
{
    class Program
    {
        static void Main()
        {
            string[] buffer = (Console.ReadLine()).Split(' ');
            int turn = int.Parse(buffer[0]);
            int posY = int.Parse(buffer[1]);
            int posX = int.Parse(buffer[2]);
            int posMax = Math.Max(posX, posY);
            if ((turn >= posMax) && (!((posMax == 0) && (turn == 1))))
            {
                Console.WriteLine("YES");
                int dummyStepTurnX = turn - posX;
                int dummyStepTurnY = turn - posY;
                int[] stepListX = new int[turn];
                int[] stepListY = new int[turn];

                for (int i = 0, dummyX = (dummyStepTurnX - (dummyStepTurnX % 2)); i < dummyX; i++)
                {
                    stepListX[i] = ((i % 2) << 1) - 1;
                }
                for (int i = dummyStepTurnX; i < turn; i++)
                {
                    stepListX[i] = 1;
                }
                for (int i = 0, dummyY = (dummyStepTurnY - (dummyStepTurnY % 2)); i < dummyY; i++)
                {
                    stepListY[i] = ((i % 2) << 1) - 1;
                }
                for (int i = dummyStepTurnY; i < turn; i++)
                {
                    stepListY[i] = 1;
                }
                if ((dummyStepTurnX % 2) != 0)
                {
                    int stepBuffer = stepListX[0];
                    stepListX[0] = stepListX[dummyStepTurnX - 1];
                    stepListX[dummyStepTurnX - 1] = stepBuffer;
                }
                for (int i = 0; i < turn; i++)
                {

                    if (stepListX[i] == 1)
                    {
                        Console.Write(">");
                    }
                    else if (stepListX[i] == -1)
                    {
                        Console.Write("<");
                    }
                    if (stepListY[i] == 1)
                    {
                        Console.Write("^");
                    }
                    else if (stepListY[i] == -1)
                    {
                        Console.Write("v");
                    }
                    Console.WriteLine();
                }
            }
            else
            {
                Console.WriteLine("NO");
            }
        }
    }
}
0