結果
問題 | No.401 数字の渦巻き |
ユーザー | konabe |
提出日時 | 2018-08-01 17:40:12 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,022 bytes |
コンパイル時間 | 107 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-09-19 16:50:31 |
合計ジャッジ時間 | 1,984 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
10,752 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 | - |
ソースコード
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()