結果

問題 No.2064 Smallest Sequence on Grid
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-09-02 22:11:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 580 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 81,864 KB
実行使用メモリ 849,304 KB
最終ジャッジ日時 2024-11-16 03:49:38
合計ジャッジ時間 60,403 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
58,628 KB
testcase_01 AC 35 ms
402,348 KB
testcase_02 AC 38 ms
60,176 KB
testcase_03 AC 39 ms
371,480 KB
testcase_04 AC 38 ms
59,432 KB
testcase_05 AC 39 ms
358,968 KB
testcase_06 AC 37 ms
59,332 KB
testcase_07 AC 38 ms
52,704 KB
testcase_08 AC 45 ms
59,668 KB
testcase_09 AC 41 ms
58,532 KB
testcase_10 AC 45 ms
61,384 KB
testcase_11 TLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 AC 147 ms
85,164 KB
testcase_29 MLE -
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
S = [input() for i in range(h)]
ans = []

ans.append(S[0][0])
l = [[0,0]]

for i in range(h+w-1):

    cands = [[] for j in range(26)]
    for x,y in l:
        nx,ny = x+1,y
        if 0 <= nx < h and 0 <= ny < w:
            cands[ord(S[nx][ny])-ord("a")].append([nx,ny])

        nx,ny = x,y+1
        if 0 <= nx < h and 0 <= ny < w:
            cands[ord(S[nx][ny])-ord("a")].append([nx,ny])

    for j in range(26):
        if cands[j] != []:
            l = cands[j]
            ans.append(chr(j+ord("a")))
            break
print(*ans,sep="")
0