結果
問題 | No.20 砂漠のオアシス |
ユーザー | konchanksu |
提出日時 | 2020-04-30 19:56:30 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 774 bytes |
コンパイル時間 | 533 ms |
コンパイル使用メモリ | 82,252 KB |
実行使用メモリ | 270,072 KB |
最終ジャッジ日時 | 2024-12-17 13:36:58 |
合計ジャッジ時間 | 11,190 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 61 ms
67,620 KB |
testcase_01 | AC | 63 ms
68,096 KB |
testcase_02 | AC | 70 ms
73,872 KB |
testcase_03 | AC | 118 ms
79,512 KB |
testcase_04 | AC | 173 ms
79,900 KB |
testcase_05 | AC | 126 ms
79,876 KB |
testcase_06 | AC | 194 ms
80,896 KB |
testcase_07 | WA | - |
testcase_08 | AC | 972 ms
104,792 KB |
testcase_09 | AC | 1,319 ms
118,584 KB |
testcase_10 | AC | 62 ms
67,196 KB |
testcase_11 | AC | 63 ms
67,404 KB |
testcase_12 | AC | 123 ms
78,936 KB |
testcase_13 | AC | 178 ms
79,828 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 249 ms
81,516 KB |
testcase_18 | WA | - |
testcase_19 | AC | 491 ms
89,440 KB |
testcase_20 | WA | - |
ソースコード
import queue N, V, Ox, Oy = map(int, input().split()) Ox -= 1 Oy -= 1 L = [[int(j) for j in input().split()] for i in range(N)] memo = [[0 for i in range(N)] for j in range(N)] memo[0][0] = V course = [(1, 0), (0, 1), (-1, 0), (0, -1)] a = queue.Queue() a.put((0, 0, V)) while a.qsize(): tmp = a.get() for i in course: y, x = tmp[0] + i[0], tmp[1] - i[1] if x < 0 or x >= N or y < 0 or y >= N: continue v = tmp[2] - L[y][x] if v <= memo[y][x]: continue if x == N - 1 and y == N - 1: print('YES') exit() if y == Oy and x == Ox: memo[y][x] = v * 2 else: memo[y][x] = v a.put((y, x, memo[y][x])) print('NO')