結果

問題 No.2412 YOU Grow Bigger!
ユーザー ニックネームニックネーム
提出日時 2023-08-11 22:58:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 792 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 105,688 KB
最終ジャッジ日時 2024-11-18 18:12:43
合計ジャッジ時間 13,432 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,744 KB
testcase_01 AC 36 ms
52,404 KB
testcase_02 AC 50 ms
62,416 KB
testcase_03 AC 1,678 ms
105,688 KB
testcase_04 AC 1,735 ms
102,296 KB
testcase_05 AC 1,089 ms
96,328 KB
testcase_06 AC 1,352 ms
97,592 KB
testcase_07 AC 1,740 ms
105,612 KB
testcase_08 AC 1,403 ms
100,988 KB
testcase_09 AC 55 ms
64,760 KB
testcase_10 AC 152 ms
77,156 KB
testcase_11 AC 51 ms
62,144 KB
testcase_12 AC 43 ms
52,928 KB
testcase_13 AC 170 ms
77,152 KB
testcase_14 AC 62 ms
68,592 KB
testcase_15 AC 41 ms
53,420 KB
testcase_16 AC 52 ms
62,900 KB
testcase_17 AC 60 ms
67,032 KB
testcase_18 AC 305 ms
78,440 KB
testcase_19 AC 39 ms
53,364 KB
testcase_20 AC 51 ms
64,544 KB
testcase_21 WA -
testcase_22 AC 165 ms
76,948 KB
testcase_23 AC 327 ms
78,076 KB
testcase_24 AC 753 ms
85,116 KB
testcase_25 WA -
testcase_26 AC 128 ms
77,144 KB
testcase_27 AC 92 ms
76,048 KB
testcase_28 AC 230 ms
78,088 KB
testcase_29 AC 39 ms
53,272 KB
testcase_30 AC 46 ms
61,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
s = [input()+"#" for _ in range(h)]+["#"*(w+1)]
def check(t):
    f = [[False]*(w+1) for _ in range(h+1)]
    f[1][1] = True; st = [(1,1)]
    while st:
        px,py = st.pop()
        for dx,dy in ((-1,0),(0,-1),(0,1),(1,0)):
            nx,ny = px+dx,py+dy
            if f[nx][ny]: continue
            g = True
            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