結果

問題 No.2412 YOU Grow Bigger!
ユーザー ニックネームニックネーム
提出日時 2023-08-11 23:09:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,738 ms / 6,000 ms
コード長 805 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 119,544 KB
最終ジャッジ日時 2024-11-21 08:45:44
合計ジャッジ時間 22,444 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,352 KB
testcase_01 AC 39 ms
52,816 KB
testcase_02 AC 60 ms
68,716 KB
testcase_03 AC 2,642 ms
118,880 KB
testcase_04 AC 2,406 ms
117,224 KB
testcase_05 AC 2,489 ms
110,852 KB
testcase_06 AC 2,738 ms
115,332 KB
testcase_07 AC 2,572 ms
119,544 KB
testcase_08 AC 2,670 ms
113,872 KB
testcase_09 AC 57 ms
68,124 KB
testcase_10 AC 195 ms
77,560 KB
testcase_11 AC 57 ms
66,468 KB
testcase_12 AC 42 ms
59,424 KB
testcase_13 AC 233 ms
77,716 KB
testcase_14 AC 103 ms
76,556 KB
testcase_15 AC 44 ms
59,160 KB
testcase_16 AC 59 ms
67,864 KB
testcase_17 AC 59 ms
68,560 KB
testcase_18 AC 564 ms
80,536 KB
testcase_19 AC 40 ms
53,064 KB
testcase_20 AC 58 ms
68,228 KB
testcase_21 AC 189 ms
77,388 KB
testcase_22 AC 234 ms
77,940 KB
testcase_23 AC 854 ms
82,680 KB
testcase_24 AC 1,339 ms
90,004 KB
testcase_25 AC 770 ms
81,968 KB
testcase_26 AC 160 ms
77,036 KB
testcase_27 AC 121 ms
77,400 KB
testcase_28 AC 319 ms
78,724 KB
testcase_29 AC 40 ms
54,620 KB
testcase_30 AC 52 ms
64,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
s = [input()+"#" for _ in range(h)]+["#"*(w+1)]
def check(t):
    f = [[False]*w for _ in range(h)]; f[1][1] = True; st = [(1,1)]
    while st:
        px,py = st.pop()
        for dx in range(-1,2):
            for dy in range(-1,2):
                nx,ny = px+dx,py+dy; g = True
                if f[nx][ny]: continue
                for i in range(-1,2):
                    for j in range(-1,2):
                        g &= t[nx+i][ny+j]=="."
                if g: f[nx][ny] = True; st.append((nx,ny))
    return f[h-2][w-2]
if not check(s): exit(print(0))
for i in range(h):
    for j in range(w):
        if 0<=i<=2 and 0<=j<=2 or h-3<=i<=h-1 and w-3<=j<=w-1: continue
        t = [list(si) for si in s]; t[i][j] = "#"
        if not check(t): exit(print(1))
print(2)
0