結果
問題 | No.2328 Build Walls |
ユーザー | yu7400ki |
提出日時 | 2023-05-28 15:44:21 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 721 bytes |
コンパイル時間 | 245 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 61,056 KB |
最終ジャッジ日時 | 2024-12-27 08:24:44 |
合計ジャッジ時間 | 21,610 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
10,240 KB |
testcase_01 | AC | 30 ms
10,368 KB |
testcase_02 | AC | 33 ms
10,368 KB |
testcase_03 | AC | 32 ms
10,496 KB |
testcase_04 | AC | 31 ms
10,368 KB |
testcase_05 | AC | 29 ms
10,240 KB |
testcase_06 | AC | 32 ms
10,240 KB |
testcase_07 | AC | 34 ms
10,368 KB |
testcase_08 | AC | 30 ms
10,368 KB |
testcase_09 | AC | 30 ms
10,496 KB |
testcase_10 | AC | 32 ms
10,368 KB |
testcase_11 | AC | 31 ms
10,240 KB |
testcase_12 | AC | 30 ms
10,368 KB |
testcase_13 | AC | 249 ms
19,072 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 58 ms
11,392 KB |
testcase_20 | WA | - |
testcase_21 | AC | 221 ms
16,256 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 408 ms
21,504 KB |
testcase_29 | WA | - |
testcase_30 | AC | 428 ms
26,240 KB |
testcase_31 | AC | 431 ms
25,216 KB |
testcase_32 | WA | - |
testcase_33 | TLE | - |
testcase_34 | AC | 436 ms
29,056 KB |
testcase_35 | AC | 2,225 ms
51,712 KB |
testcase_36 | WA | - |
ソースコード
H, W = map(int, input().split()) A = [list(map(int, input().split())) for _ in range(H - 2)] d = [[float('inf')] * W for _ in range(H - 2)] for h in range(H - 2): if A[h][0] == -1: continue d[h][0] = A[h][0] for w in range(W - 1): for h in range(H - 2): if d[h][w] == float('inf'): continue for d_h in (-1, 0, 1): if h + d_h < 0 or h + d_h >= H - 2: continue if A[h + d_h][w + 1] == -1: continue d[h + d_h][w + 1] = min(d[h + d_h][w + 1], d[h][w] + A[h + d_h][w + 1]) ans = float('inf') for h in range(H - 2): ans = min(ans, d[h][W - 1]) if ans == float('inf'): print(-1) else: print(ans)