結果
問題 | No.1948 足し算するだけのパズルゲーム(1) |
ユーザー | hashi_py |
提出日時 | 2022-05-20 23:26:07 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 706 bytes |
コンパイル時間 | 217 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 26,880 KB |
最終ジャッジ日時 | 2024-09-20 09:52:02 |
合計ジャッジ時間 | 5,083 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
16,000 KB |
testcase_01 | AC | 27 ms
10,752 KB |
testcase_02 | AC | 29 ms
10,624 KB |
testcase_03 | AC | 30 ms
10,752 KB |
testcase_04 | AC | 26 ms
10,624 KB |
testcase_05 | AC | 28 ms
10,752 KB |
testcase_06 | AC | 28 ms
10,752 KB |
testcase_07 | AC | 97 ms
20,480 KB |
testcase_08 | AC | 105 ms
21,120 KB |
testcase_09 | AC | 109 ms
21,504 KB |
testcase_10 | AC | 110 ms
21,376 KB |
testcase_11 | AC | 105 ms
21,376 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
h,w = map(int,input().split()) G = [list(map(int,input().split()))for _ in range(h)] from sys import setrecursionlimit setrecursionlimit(300000) # import pypyjit # pypyjit.set_param('max_unroll_recursion=-1') ret = [] def dfs(power,H,W,continued): # print(power,H,W,continued) if(H==h-1 and W==w-1): if(power>G[-1][-1]): print("Yes") exit() else: return for a,b in ((0,1),(1,0)): if(0<=H+a<h and 0<=W+b<w): if(G[H+a][W+b]<power): dfs(power+G[H+a][W+b],H+a,W+b,continued) else: if(continued==0): dfs(power,H+a,W+b,continued+1) dfs(G[0][0],0,0,0) print("No")