結果

問題 No.401 数字の渦巻き
ユーザー konabekonabe
提出日時 2018-08-01 17:40:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,022 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 11,916 KB
実行使用メモリ 10,352 KB
最終ジャッジ日時 2023-10-19 20:44:18
合計ジャッジ時間 2,287 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,232 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
maps = [[0 for i in range(N)] for j in range(N)]

i, j = 0, 0
n = 1
direct = 0  # 0->, 1down, 2<-, 3up
direct_changed = False
while n < N*N:
    maps[i][j] = n
    print("(%d, %d) == %d" %(i, j, n))
    direct_changed = False
    if direct == 0:
        if j < N - 1 and maps[i][j+1] == 0:
            j += 1
        else:
            direct = 1
            direct_changed = True
    elif direct == 1:
        if i < N - 1 and maps[i+1][j] == 0:
            i += 1
        else:
            direct = 2
            direct_changed = True
    elif direct == 2:
        if j > 0 and maps[i][j-1] == 0:
            j -= 1
        else:
            direct = 3
            direct_changed = True
    elif direct == 3:
        if i > 0 and maps[i-1][j] == 0:
            i -= 1
        else:
            direct = 0
            direct_changed = True
    if not direct_changed:
        n += 1
        
maps[i][j] = N*N
for i in range(N):
    for j in range(N):
        print("%03d" % maps[i][j], end=" ")
    print()
0