結果

問題 No.232 めぐるはめぐる (2)
ユーザー nokonokonokonoko
提出日時 2015-07-01 19:14:52
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 267 ms / 1,000 ms
コード長 2,193 bytes
コンパイル時間 1,087 ms
コンパイル使用メモリ 111,080 KB
実行使用メモリ 21,332 KB
最終ジャッジ日時 2024-09-14 12:35:11
合計ジャッジ時間 4,466 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 248 ms
21,332 KB
testcase_01 AC 252 ms
21,060 KB
testcase_02 AC 267 ms
21,328 KB
testcase_03 AC 259 ms
21,200 KB
testcase_04 AC 24 ms
17,792 KB
testcase_05 AC 25 ms
17,792 KB
testcase_06 AC 26 ms
18,176 KB
testcase_07 AC 24 ms
17,792 KB
testcase_08 AC 190 ms
20,140 KB
testcase_09 AC 24 ms
18,048 KB
testcase_10 AC 27 ms
17,792 KB
testcase_11 AC 26 ms
17,792 KB
testcase_12 AC 26 ms
17,792 KB
testcase_13 AC 27 ms
17,920 KB
testcase_14 AC 27 ms
17,920 KB
testcase_15 AC 25 ms
18,048 KB
testcase_16 AC 26 ms
18,048 KB
testcase_17 AC 27 ms
17,792 KB
testcase_18 AC 29 ms
18,048 KB
testcase_19 AC 27 ms
18,176 KB
testcase_20 AC 26 ms
18,048 KB
testcase_21 AC 26 ms
17,920 KB
testcase_22 AC 27 ms
18,048 KB
testcase_23 AC 24 ms
17,664 KB
testcase_24 AC 27 ms
18,176 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;
                }
                for (int i = dummyStepTurnX; i < turn; i++)
                {
                    stepListX[i] = 2;
                }
                for (int i = 0, dummyY = (dummyStepTurnY - (dummyStepTurnY % 2)); i < dummyY; i++)
                {
                    stepListY[i] = -((i % 2) + 1);
                }
                for (int i = dummyStepTurnY; i < turn; i++)
                {
                    stepListY[i] = -2;
                }
                Array.Sort(stepListX);
                Array.Sort(stepListY);
                for (int i = 0; i < turn; i++)
                {
                    string output = "";
                    if (stepListX[i] == 2)
                    {
                        output += ">";
                    }
                    else if (stepListX[i] == 1)
                    {
                        output += "<";
                    }
                    if (stepListY[i] == -2)
                    {
                        output += "^";
                    }
                    else if (stepListY[i] == -1)
                    {
                        output += "v";
                    }
                    Console.WriteLine(output);
                }
            }
            else
            {
                Console.WriteLine("NO");
            }
        }
    }
}
0