結果
問題 | No.2064 Smallest Sequence on Grid |
ユーザー | とりゐ |
提出日時 | 2021-08-10 04:55:33 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 515 bytes |
コンパイル時間 | 238 ms |
コンパイル使用メモリ | 82,152 KB |
実行使用メモリ | 163,144 KB |
最終ジャッジ日時 | 2024-04-27 20:13:18 |
合計ジャッジ時間 | 17,566 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
53,852 KB |
testcase_01 | RE | - |
testcase_02 | AC | 38 ms
54,136 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 38 ms
54,280 KB |
testcase_06 | AC | 38 ms
54,252 KB |
testcase_07 | AC | 37 ms
53,996 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 383 ms
157,112 KB |
testcase_18 | AC | 382 ms
156,832 KB |
testcase_19 | AC | 385 ms
156,848 KB |
testcase_20 | AC | 1,267 ms
161,848 KB |
testcase_21 | AC | 1,339 ms
162,208 KB |
testcase_22 | AC | 1,076 ms
159,572 KB |
testcase_23 | AC | 1,019 ms
160,088 KB |
testcase_24 | AC | 1,006 ms
160,104 KB |
testcase_25 | AC | 1,030 ms
160,080 KB |
testcase_26 | AC | 1,698 ms
163,040 KB |
testcase_27 | AC | 1,702 ms
163,144 KB |
testcase_28 | AC | 411 ms
157,016 KB |
testcase_29 | RE | - |
testcase_30 | RE | - |
ソースコード
from collections import defaultdict h,w=map(int,input().split()) s=[] for i in range(h): s.append(input()) a=[[0]*w for i in range(h)] a[0][0]=1 dxdy=[(0,1),(1,0)] ans=[] for i in range(h+w-1): d=defaultdict(list) t=set() for x in range(max(0,i-h+1),min(i+1,w)): y=i-x if a[x][y]==1: d[s[x][y]].append((x,y)) t.add(s[x][y]) t=sorted(list(t)) u=t[0] ans.append(u) for x,y in d[u]: for dx,dy in dxdy: if 0<=x+dx<h and 0<=y+dy<w: a[x+dx][y+dy]=1 print(*ans,sep='')