結果
問題 | No.401 数字の渦巻き |
ユーザー | abL8ZLsTbF |
提出日時 | 2016-07-28 15:47:40 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 31 ms / 2,000 ms |
コード長 | 916 bytes |
コンパイル時間 | 3,595 ms |
コンパイル使用メモリ | 110,712 KB |
実行使用メモリ | 26,408 KB |
最終ジャッジ日時 | 2024-11-06 18:10:18 |
合計ジャッジ時間 | 4,741 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
21,944 KB |
testcase_01 | AC | 26 ms
24,244 KB |
testcase_02 | AC | 26 ms
24,096 KB |
testcase_03 | AC | 26 ms
26,004 KB |
testcase_04 | AC | 26 ms
23,964 KB |
testcase_05 | AC | 27 ms
24,224 KB |
testcase_06 | AC | 27 ms
23,960 KB |
testcase_07 | AC | 26 ms
22,200 KB |
testcase_08 | AC | 27 ms
23,984 KB |
testcase_09 | AC | 28 ms
24,096 KB |
testcase_10 | AC | 28 ms
26,132 KB |
testcase_11 | AC | 28 ms
24,092 KB |
testcase_12 | AC | 27 ms
24,220 KB |
testcase_13 | AC | 29 ms
23,964 KB |
testcase_14 | AC | 28 ms
23,984 KB |
testcase_15 | AC | 28 ms
24,216 KB |
testcase_16 | AC | 28 ms
23,836 KB |
testcase_17 | AC | 29 ms
24,092 KB |
testcase_18 | AC | 29 ms
24,088 KB |
testcase_19 | AC | 29 ms
24,092 KB |
testcase_20 | AC | 29 ms
23,968 KB |
testcase_21 | AC | 29 ms
24,104 KB |
testcase_22 | AC | 29 ms
23,984 KB |
testcase_23 | AC | 31 ms
25,888 KB |
testcase_24 | AC | 29 ms
23,960 KB |
testcase_25 | AC | 30 ms
26,408 KB |
testcase_26 | AC | 30 ms
24,116 KB |
testcase_27 | AC | 31 ms
26,012 KB |
testcase_28 | AC | 31 ms
24,220 KB |
testcase_29 | AC | 31 ms
23,968 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; public class Program { public static void Main() { int N = int.Parse(Console.ReadLine()); int[,] grid = new int[N, N]; int[,] move = {{1, 0}, {0, 1}, {-1, 0}, {0, -1}}; int[] pos = {0, 0}; int moveId = 0; for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { grid[i, j] = 0; } } for (int i = 1; i <= N * N; i++) { grid[pos[0], pos[1]] = i; if (pos[0] + move[moveId, 0] < 0 || N <= pos[0] + move[moveId, 0] || pos[1] + move[moveId, 1] < 0 || N <= pos[1] + move[moveId, 1] || grid[pos[0] + move[moveId, 0], pos[1] + move[moveId, 1]] > 0) { moveId = (moveId + 1) % 4; } pos[0] += move[moveId, 0]; pos[1] += move[moveId, 1]; } for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { Console.Write("{0:000}", grid[j, i]); if (j < N - 1) { Console.Write(' '); } } Console.WriteLine(); } } }