結果

問題 No.401 数字の渦巻き
ユーザー maspymaspy
提出日時 2020-01-20 16:57:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 533 ms / 2,000 ms
コード長 477 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,472 KB
最終ジャッジ日時 2024-07-02 22:40:57
合計ジャッジ時間 20,355 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 521 ms
44,336 KB
testcase_01 AC 523 ms
44,196 KB
testcase_02 AC 528 ms
44,080 KB
testcase_03 AC 520 ms
44,340 KB
testcase_04 AC 522 ms
44,204 KB
testcase_05 AC 519 ms
44,092 KB
testcase_06 AC 521 ms
44,088 KB
testcase_07 AC 528 ms
44,340 KB
testcase_08 AC 524 ms
43,948 KB
testcase_09 AC 521 ms
44,328 KB
testcase_10 AC 521 ms
44,080 KB
testcase_11 AC 521 ms
44,088 KB
testcase_12 AC 519 ms
44,332 KB
testcase_13 AC 518 ms
44,340 KB
testcase_14 AC 527 ms
43,984 KB
testcase_15 AC 527 ms
44,468 KB
testcase_16 AC 516 ms
44,080 KB
testcase_17 AC 533 ms
44,336 KB
testcase_18 AC 519 ms
44,472 KB
testcase_19 AC 523 ms
44,412 KB
testcase_20 AC 514 ms
43,960 KB
testcase_21 AC 520 ms
44,084 KB
testcase_22 AC 523 ms
44,340 KB
testcase_23 AC 520 ms
44,336 KB
testcase_24 AC 521 ms
44,064 KB
testcase_25 AC 519 ms
44,084 KB
testcase_26 AC 524 ms
44,468 KB
testcase_27 AC 526 ms
44,080 KB
testcase_28 AC 520 ms
44,084 KB
testcase_29 AC 528 ms
44,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np

N = int(read())

A = np.zeros((N+2,N+2),np.int32)

A[0] = -1
A[-1] = -1
A[:,0] = -1
A[:,-1] = -1
x,y = 1,1
dx,dy = 0,1
A[1,1] = 1
for _ in range(N*N-1):
    if A[x+dx,y+dy] != 0:
        dx,dy = dy,-dx
    A[x+dx,y+dy] = A[x,y] + 1
    x += dx
    y += dy

A = A[1:-1,1:-1]

for row in A:
    print(' '.join('{:03}'.format(x) for x in row))
0