結果

問題 No.401 数字の渦巻き
ユーザー _matumo__matumo_
提出日時 2018-09-05 19:06:06
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 1,015 bytes
コンパイル時間 2,951 ms
コンパイル使用メモリ 102,228 KB
実行使用メモリ 22,868 KB
最終ジャッジ日時 2023-08-09 20:03:05
合計ジャッジ時間 5,900 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
22,768 KB
testcase_01 AC 56 ms
18,708 KB
testcase_02 AC 57 ms
20,752 KB
testcase_03 AC 57 ms
20,756 KB
testcase_04 AC 56 ms
20,680 KB
testcase_05 AC 55 ms
18,708 KB
testcase_06 AC 57 ms
20,768 KB
testcase_07 AC 56 ms
20,712 KB
testcase_08 AC 56 ms
20,716 KB
testcase_09 AC 57 ms
22,684 KB
testcase_10 AC 56 ms
20,756 KB
testcase_11 AC 57 ms
20,760 KB
testcase_12 AC 56 ms
20,732 KB
testcase_13 AC 58 ms
22,800 KB
testcase_14 AC 57 ms
20,648 KB
testcase_15 AC 56 ms
20,788 KB
testcase_16 AC 56 ms
20,744 KB
testcase_17 AC 57 ms
20,804 KB
testcase_18 AC 57 ms
20,752 KB
testcase_19 AC 57 ms
20,768 KB
testcase_20 AC 57 ms
22,768 KB
testcase_21 AC 57 ms
20,716 KB
testcase_22 AC 57 ms
20,660 KB
testcase_23 AC 58 ms
20,804 KB
testcase_24 AC 55 ms
20,712 KB
testcase_25 AC 57 ms
22,868 KB
testcase_26 AC 56 ms
20,776 KB
testcase_27 AC 57 ms
20,712 KB
testcase_28 AC 57 ms
20,768 KB
testcase_29 AC 56 ms
20,660 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.Generic;
using System.Linq;
using System.Text;

namespace YukiCoder
{
    class Program
    {
        static void Main(string[] args)
        {
            int N = int.Parse(Console.ReadLine());
            int[,] pa = new int[N, N];
            int x = 0;
            int y = 0;
            int n = 1;
            pa[0, 0] = n++;
            while (n < N * N +1)
            {
                while (x + 1 < N && pa[y, x + 1] == 0)    pa[y, ++x] = n++;
                while (y + 1 < N && pa[y + 1, x] == 0)    pa[++y, x] = n++;
                while (x - 1 >=0 && pa[y, x - 1] == 0)    pa[y, --x] = n++;
                while (pa[y - 1, x] == 0)                 pa[--y, x] = n++;
            }
            for (int i = 0; i < N; i++)
            {
                for (int j = 0; j < N; j++)  Console.Write(pa[i, j].ToString("D3") + " ");
                Console.WriteLine();
            }
            //Console.WriteLine();
            Console.ReadLine();
        }
    }
}
0