結果

問題 No.179 塗り分け
ユーザー takakintakakin
提出日時 2020-04-21 22:17:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 533 ms / 3,000 ms
コード長 1,160 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 77,940 KB
最終ジャッジ日時 2024-07-23 15:13:45
合計ジャッジ時間 12,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,048 KB
testcase_01 AC 39 ms
54,180 KB
testcase_02 AC 39 ms
54,332 KB
testcase_03 AC 39 ms
52,968 KB
testcase_04 AC 45 ms
60,360 KB
testcase_05 AC 135 ms
76,688 KB
testcase_06 AC 118 ms
76,412 KB
testcase_07 AC 217 ms
76,348 KB
testcase_08 AC 227 ms
76,480 KB
testcase_09 AC 227 ms
76,784 KB
testcase_10 AC 432 ms
77,532 KB
testcase_11 AC 415 ms
77,032 KB
testcase_12 AC 411 ms
76,844 KB
testcase_13 AC 48 ms
63,388 KB
testcase_14 AC 51 ms
64,732 KB
testcase_15 AC 38 ms
52,524 KB
testcase_16 AC 39 ms
53,432 KB
testcase_17 AC 37 ms
53,812 KB
testcase_18 AC 373 ms
77,380 KB
testcase_19 AC 380 ms
77,724 KB
testcase_20 AC 327 ms
76,796 KB
testcase_21 AC 274 ms
76,608 KB
testcase_22 AC 325 ms
76,816 KB
testcase_23 AC 374 ms
77,148 KB
testcase_24 AC 259 ms
77,100 KB
testcase_25 AC 285 ms
77,304 KB
testcase_26 AC 343 ms
77,184 KB
testcase_27 AC 368 ms
76,864 KB
testcase_28 AC 458 ms
77,700 KB
testcase_29 AC 478 ms
77,140 KB
testcase_30 AC 495 ms
77,932 KB
testcase_31 AC 498 ms
77,468 KB
testcase_32 AC 512 ms
77,940 KB
testcase_33 AC 488 ms
77,516 KB
testcase_34 AC 533 ms
77,328 KB
testcase_35 AC 499 ms
77,196 KB
testcase_36 AC 38 ms
53,732 KB
testcase_37 AC 39 ms
54,320 KB
testcase_38 AC 38 ms
53,824 KB
testcase_39 AC 38 ms
53,540 KB
testcase_40 AC 39 ms
54,340 KB
testcase_41 AC 38 ms
52,840 KB
testcase_42 AC 39 ms
52,772 KB
testcase_43 AC 102 ms
76,508 KB
testcase_44 AC 143 ms
76,844 KB
testcase_45 AC 89 ms
76,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
h,w=map(int,input().split())
S=[input() for _ in range(h)]
chk=False
for i in range(h):
  for j in range(w):
    for sign in range(2):
      if i==0 and j==0:
        continue
      else:
        cur=True
        ct=0
        C=[[False]*w for _ in range(h)]
        if sign==0:
          for ii in range(h):
            for jj in range(w):
              if S[ii][jj]==".":
                continue
              else:
                ct+=1
                if C[ii][jj]==False:
                  if 0<=ii+i<h and 0<=jj+j<w and S[ii+i][jj+j]=="#":
                    C[ii+i][jj+j]=True
                  else:
                    cur=False
        else:
          for ii in range(h)[::-1]:
            for jj in range(w):
              if S[ii][jj]==".":
                continue
              else:
                ct+=1
                if C[ii][jj]==False:
                  if 0<=ii-i<h and 0<=jj+j<w and S[ii-i][jj+j]=="#":
                    C[ii-i][jj+j]=True
                  else:
                    cur=False
        if cur and ct:
          chk=True
if chk:
  print("YES")
else:
  print("NO")
0