結果

問題 No.2064 Smallest Sequence on Grid
ユーザー DrDrpilotDrDrpilot
提出日時 2022-09-04 19:16:11
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 970 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 849,896 KB
最終ジャッジ日時 2024-11-19 01:45:28
合計ジャッジ時間 35,331 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
61,908 KB
testcase_01 AC 51 ms
61,820 KB
testcase_02 AC 49 ms
61,608 KB
testcase_03 AC 51 ms
62,452 KB
testcase_04 AC 51 ms
62,544 KB
testcase_05 AC 52 ms
61,536 KB
testcase_06 AC 51 ms
61,548 KB
testcase_07 AC 49 ms
61,312 KB
testcase_08 AC 54 ms
65,516 KB
testcase_09 AC 55 ms
64,772 KB
testcase_10 AC 57 ms
65,992 KB
testcase_11 AC 59 ms
66,064 KB
testcase_12 AC 61 ms
67,284 KB
testcase_13 AC 60 ms
67,412 KB
testcase_14 AC 60 ms
66,764 KB
testcase_15 AC 59 ms
65,952 KB
testcase_16 AC 58 ms
67,412 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def I():return int(input())
def MAP():return map(int,input().split())
def MAPs():return map(str,input().split())
def LI(): return list(map(int,input().split()))
def TPL(): return tuple(map(int,input().split()))
def S():return input()
from collections import defaultdict,Counter,deque
from copy import deepcopy
from heapq import heapify,heappop,heappush
from bisect import bisect_left,bisect_right
from itertools import accumulate,product,permutations,combinations
from math import gcd,ceil,floor,sqrt
inf=10**18

h,w=MAP()
g=[S() for _ in range(h)]
dp=[['']*w for _ in range(h)]
dp[0][0]=g[0][0]
for i in range(h):
    for j in range(w):
        if i==j==0:
            continue
        if i==0:
            dp[i][j]=dp[i][j-1]+g[i][j]
        elif j==0:
            dp[i][j]=dp[i-1][j]+g[i][j]
        else:
            if dp[i-1][j]<dp[i][j-1]:
                dp[i][j]=dp[i-1][j]+g[i][j]
            else:
                dp[i][j]=dp[i][j-1]+g[i][j]
print(dp[-1][-1])
0