結果
問題 | No.2064 Smallest Sequence on Grid |
ユーザー | flippergo |
提出日時 | 2024-11-11 17:14:07 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 288 bytes |
コンパイル時間 | 2,066 ms |
コンパイル使用メモリ | 81,280 KB |
実行使用メモリ | 289,812 KB |
最終ジャッジ日時 | 2024-11-11 17:14:16 |
合計ジャッジ時間 | 7,958 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
57,600 KB |
testcase_01 | AC | 38 ms
51,584 KB |
testcase_02 | AC | 40 ms
52,352 KB |
testcase_03 | AC | 38 ms
51,584 KB |
testcase_04 | AC | 38 ms
52,224 KB |
testcase_05 | AC | 38 ms
51,712 KB |
testcase_06 | AC | 42 ms
52,096 KB |
testcase_07 | AC | 37 ms
51,968 KB |
testcase_08 | AC | 46 ms
59,392 KB |
testcase_09 | AC | 44 ms
58,112 KB |
testcase_10 | AC | 48 ms
60,672 KB |
testcase_11 | AC | 47 ms
60,416 KB |
testcase_12 | AC | 47 ms
60,672 KB |
testcase_13 | AC | 48 ms
60,544 KB |
testcase_14 | AC | 47 ms
61,056 KB |
testcase_15 | AC | 46 ms
59,776 KB |
testcase_16 | AC | 48 ms
60,544 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
H,W = map(int,input().split()) S = [input().strip() for _ in range(H)] dp = ["" for _ in range(W)] dp[0] = S[0][0] for j in range(1,W): dp[j] = dp[j-1]+S[0][j] for i in range(1,H): dp[0] += S[i][0] for j in range(1,W): dp[j] = min(dp[j],dp[j-1])+S[i][j] print(dp[W-1])