結果

問題 No.2064 Smallest Sequence on Grid
ユーザー flygonflygon
提出日時 2022-09-18 22:44:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 360 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 351,500 KB
最終ジャッジ日時 2024-12-22 01:46:18
合計ジャッジ時間 59,820 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,216 KB
testcase_01 AC 41 ms
351,164 KB
testcase_02 AC 41 ms
57,088 KB
testcase_03 AC 39 ms
351,500 KB
testcase_04 AC 40 ms
57,216 KB
testcase_05 AC 40 ms
57,216 KB
testcase_06 AC 40 ms
57,344 KB
testcase_07 AC 39 ms
56,960 KB
testcase_08 AC 48 ms
64,128 KB
testcase_09 AC 47 ms
63,616 KB
testcase_10 AC 52 ms
66,688 KB
testcase_11 AC 51 ms
66,048 KB
testcase_12 AC 50 ms
65,920 KB
testcase_13 AC 51 ms
68,260 KB
testcase_14 AC 55 ms
67,328 KB
testcase_15 AC 53 ms
66,176 KB
testcase_16 AC 53 ms
66,688 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
s = [input() for i in range(h)]
dp = [0]*(w)
for i in range(h):
  new = [0]*w
  for j in range(w):
    if i == 0 and j == 0:
      new[j] = s[0][0]
    elif i == 0:
      new[j] = new[j-1] + s[i][j]
    elif j == 0:
      new[j] = dp[j] + s[i][j]
    else:
      new[j] = min(new[j-1], dp[j]) + s[i][j]
  dp = new
print(new[-1])
0