結果
問題 | No.401 数字の渦巻き |
ユーザー | aketijyuuzou |
提出日時 | 2024-10-13 08:00:35 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 38 ms / 2,000 ms |
コード長 | 2,514 bytes |
コンパイル時間 | 951 ms |
コンパイル使用メモリ | 114,908 KB |
実行使用メモリ | 25,904 KB |
最終ジャッジ日時 | 2024-10-13 08:00:38 |
合計ジャッジ時間 | 2,717 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
21,936 KB |
testcase_01 | AC | 24 ms
23,780 KB |
testcase_02 | AC | 22 ms
23,788 KB |
testcase_03 | AC | 23 ms
23,856 KB |
testcase_04 | AC | 23 ms
25,580 KB |
testcase_05 | AC | 22 ms
23,656 KB |
testcase_06 | AC | 22 ms
24,112 KB |
testcase_07 | AC | 23 ms
23,656 KB |
testcase_08 | AC | 22 ms
21,812 KB |
testcase_09 | AC | 38 ms
23,984 KB |
testcase_10 | AC | 23 ms
23,912 KB |
testcase_11 | AC | 23 ms
23,784 KB |
testcase_12 | AC | 22 ms
23,908 KB |
testcase_13 | AC | 23 ms
25,904 KB |
testcase_14 | AC | 24 ms
25,692 KB |
testcase_15 | AC | 23 ms
23,784 KB |
testcase_16 | AC | 23 ms
25,780 KB |
testcase_17 | AC | 22 ms
25,564 KB |
testcase_18 | AC | 22 ms
23,652 KB |
testcase_19 | AC | 23 ms
23,528 KB |
testcase_20 | AC | 23 ms
23,780 KB |
testcase_21 | AC | 24 ms
23,780 KB |
testcase_22 | AC | 23 ms
23,784 KB |
testcase_23 | AC | 24 ms
23,400 KB |
testcase_24 | AC | 24 ms
23,652 KB |
testcase_25 | AC | 23 ms
23,984 KB |
testcase_26 | AC | 24 ms
23,780 KB |
testcase_27 | AC | 23 ms
25,772 KB |
testcase_28 | AC | 23 ms
23,656 KB |
testcase_29 | AC | 24 ms
23,780 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; class Program { static string InputPattern = "InputX"; static List<string> GetInputList() { var WillReturn = new List<string>(); if (InputPattern == "Input1") { WillReturn.Add("3"); //001 002 003 //008 009 004 //007 006 005 } else if (InputPattern == "Input2") { WillReturn.Add("4"); //001 002 003 004 //012 013 014 005 //011 016 015 006 //010 009 008 007 } else { string wkStr; while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr); } return WillReturn; } static void Main() { List<string> InputList = GetInputList(); int N = int.Parse(InputList[0]); int UB = N - 1; int[,] BanArr = new int[UB + 1, UB + 1]; int CurrX = 0, CurrY = 0; int VisitedCnt = 0; //0が右向き //1が下向き //2が左向き //3が上向き int Muki = 0; while (true) { BanArr[CurrX, CurrY] = ++VisitedCnt; if (VisitedCnt == (UB + 1) * (UB + 1)) break; //次のマスに進む while (true) { int HeniX, HeniY; DeriveHeni(Muki, out HeniX, out HeniY); int NewX = CurrX + HeniX; int NewY = CurrY + HeniY; if (NewX < 0 || UB < NewX || NewY < 0 || UB < NewY || BanArr[NewX, NewY] != 0) { Muki = (Muki + 1) % 4; continue; } CurrX = NewX; CurrY = NewY; break; } } var sb = new System.Text.StringBuilder(); for (int Y = 0; Y <= UB; Y++) { for (int X = 0; X <= UB; X++) { if (X > 0) sb.Append(' '); sb.Append(BanArr[X, Y].ToString().PadLeft(3, '0')); } sb.AppendLine(); } Console.Write(sb.ToString()); } //向きを引数として、変位をセット static void DeriveHeni(int pMuki, out int pHeniX, out int pHeniY) { pHeniX = pHeniY = -1; if (pMuki == 0) { pHeniX = 1; pHeniY = 0; }; if (pMuki == 1) { pHeniX = 0; pHeniY = -1; }; if (pMuki == 2) { pHeniX = -1; pHeniY = 0; }; if (pMuki == 3) { pHeniX = 0; pHeniY = 1; }; } }