結果

問題 No.401 数字の渦巻き
ユーザー _matumo__matumo_
提出日時 2018-09-05 19:06:06
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 1,015 bytes
コンパイル時間 821 ms
コンパイル使用メモリ 110,556 KB
実行使用メモリ 27,872 KB
最終ジャッジ日時 2024-04-27 14:36:13
合計ジャッジ時間 2,180 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
21,556 KB
testcase_01 AC 22 ms
27,872 KB
testcase_02 AC 21 ms
21,940 KB
testcase_03 AC 25 ms
25,704 KB
testcase_04 AC 23 ms
23,564 KB
testcase_05 AC 22 ms
23,988 KB
testcase_06 AC 21 ms
23,816 KB
testcase_07 AC 22 ms
25,824 KB
testcase_08 AC 22 ms
23,432 KB
testcase_09 AC 23 ms
23,648 KB
testcase_10 AC 21 ms
23,684 KB
testcase_11 AC 22 ms
23,564 KB
testcase_12 AC 22 ms
25,736 KB
testcase_13 AC 22 ms
23,404 KB
testcase_14 AC 20 ms
23,600 KB
testcase_15 AC 21 ms
25,708 KB
testcase_16 AC 20 ms
23,684 KB
testcase_17 AC 21 ms
23,908 KB
testcase_18 AC 21 ms
21,552 KB
testcase_19 AC 23 ms
25,816 KB
testcase_20 AC 22 ms
23,696 KB
testcase_21 AC 23 ms
23,728 KB
testcase_22 AC 21 ms
23,564 KB
testcase_23 AC 23 ms
23,816 KB
testcase_24 AC 24 ms
23,792 KB
testcase_25 AC 24 ms
23,564 KB
testcase_26 AC 23 ms
25,736 KB
testcase_27 AC 23 ms
23,948 KB
testcase_28 AC 24 ms
23,560 KB
testcase_29 AC 22 ms
25,844 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