結果

問題 No.401 数字の渦巻き
ユーザー piconic_Xpiconic_X
提出日時 2016-08-11 18:31:36
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 1,237 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 11,016 KB
実行使用メモリ 29,668 KB
最終ジャッジ日時 2023-08-07 07:26:17
合計ジャッジ時間 5,434 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
29,404 KB
testcase_01 AC 127 ms
29,588 KB
testcase_02 AC 132 ms
29,516 KB
testcase_03 AC 127 ms
29,496 KB
testcase_04 AC 126 ms
29,400 KB
testcase_05 AC 128 ms
29,620 KB
testcase_06 AC 130 ms
29,616 KB
testcase_07 AC 129 ms
29,508 KB
testcase_08 AC 129 ms
29,460 KB
testcase_09 AC 128 ms
29,476 KB
testcase_10 AC 129 ms
29,668 KB
testcase_11 AC 129 ms
29,564 KB
testcase_12 AC 129 ms
29,396 KB
testcase_13 AC 129 ms
29,528 KB
testcase_14 AC 128 ms
29,648 KB
testcase_15 AC 129 ms
29,484 KB
testcase_16 AC 127 ms
29,392 KB
testcase_17 AC 126 ms
29,588 KB
testcase_18 AC 130 ms
29,580 KB
testcase_19 AC 128 ms
29,456 KB
testcase_20 AC 127 ms
29,400 KB
testcase_21 AC 128 ms
29,528 KB
testcase_22 AC 126 ms
29,588 KB
testcase_23 AC 127 ms
29,592 KB
testcase_24 AC 127 ms
29,604 KB
testcase_25 AC 128 ms
29,536 KB
testcase_26 AC 127 ms
29,488 KB
testcase_27 AC 127 ms
29,408 KB
testcase_28 AC 126 ms
29,488 KB
testcase_29 AC 125 ms
29,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

def make_arr(N):
    arr = np.array([[1 for i in range(N)] for j in range(N)])
    return arr


def next_pos(start, dist, arr, N): # dist = 1(right), -1(left)
    k = start[0]
    l = start[1]
    pos = k,l
    while arr[k,l+dist] == 1:
        if (k,l+dist) == (0,0):
            break
        num = arr[k,l]
        l += dist
        arr[k,l] = num + 1
        if l == N-1 or l == 0:
            break
    pos = l,k
    return pos


def splitter(col):
    l = len(col)
    s = ''
    for i in range(l):
        s += '{0:0>3} '.format(col[i])
    return s


def main():
    N = int(input())
    if N == 1:
        print('001')
    else:
        arr = make_arr(N)
        i = 0
        pos = 0,0
        while i >= 0:
            phase = i % 4
            pre_pos = pos
            if phase < 2:
                pos = next_pos(pre_pos, 1, arr, N)
            else:
                pos = next_pos(pre_pos, -1, arr, N)
            arr = arr.T
            if (pos[1], pos[0]) == pre_pos:
                col = arr.shape[0]
                for i in range(col):
                    print( splitter(arr[i]) )
                break
            else:
                i += 1
    return 0

if __name__ == '__main__':
    main()
0