結果
問題 | No.2064 Smallest Sequence on Grid |
ユーザー | 👑 obakyan |
提出日時 | 2022-10-13 12:32:14 |
言語 | Lua (LuaJit 2.1.1696795921) |
結果 |
WA
|
実行時間 | - |
コード長 | 577 bytes |
コンパイル時間 | 385 ms |
コンパイル使用メモリ | 5,632 KB |
実行使用メモリ | 121,216 KB |
最終ジャッジ日時 | 2024-06-26 11:58:25 |
合計ジャッジ時間 | 13,406 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 642 ms
117,760 KB |
testcase_21 | AC | 641 ms
117,632 KB |
testcase_22 | AC | 642 ms
117,760 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 624 ms
121,216 KB |
testcase_27 | WA | - |
testcase_28 | AC | 554 ms
121,088 KB |
testcase_29 | AC | 623 ms
120,320 KB |
testcase_30 | WA | - |
ソースコード
local h, w = io.read("*n", "*n", "*l") local t = {} for i = 1, h do local s = io.read() t[i] = {} for j = 1, w do t[i][j] = s:sub(j, j) end end local ret = {} local last = t[1][1] ret[1] = last for len = 2, h + w - 1 do local nxt = "~" for i = 1, h do local j = len - i if 1 <= j and j <= w and t[i][j] == last then if j < w and t[i][j + 1] < nxt then nxt = t[i][j + 1] end if i < h and t[i + 1][j] < nxt then nxt = t[i + 1][j] end end end table.insert(ret, nxt) last = nxt end print(table.concat(ret))