結果

問題 No.179 塗り分け
ユーザー takakintakakin
提出日時 2020-04-21 22:05:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 631 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-09 12:51:50
合計ジャッジ時間 42,683 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 190 ms
10,752 KB
testcase_06 AC 116 ms
10,752 KB
testcase_07 WA -
testcase_08 AC 913 ms
10,624 KB
testcase_09 WA -
testcase_10 AC 2,699 ms
10,752 KB
testcase_11 AC 2,206 ms
10,624 KB
testcase_12 AC 2,170 ms
10,624 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 29 ms
10,624 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 1,854 ms
10,624 KB
testcase_19 AC 1,735 ms
10,752 KB
testcase_20 AC 1,639 ms
10,624 KB
testcase_21 AC 1,064 ms
10,624 KB
testcase_22 AC 1,090 ms
10,752 KB
testcase_23 AC 1,463 ms
10,752 KB
testcase_24 AC 1,061 ms
10,624 KB
testcase_25 AC 1,090 ms
10,624 KB
testcase_26 WA -
testcase_27 AC 1,542 ms
10,624 KB
testcase_28 WA -
testcase_29 AC 1,744 ms
10,752 KB
testcase_30 WA -
testcase_31 AC 1,848 ms
10,624 KB
testcase_32 AC 1,858 ms
10,752 KB
testcase_33 AC 1,940 ms
10,624 KB
testcase_34 WA -
testcase_35 AC 2,134 ms
10,752 KB
testcase_36 AC 30 ms
10,752 KB
testcase_37 AC 29 ms
10,624 KB
testcase_38 AC 29 ms
10,624 KB
testcase_39 AC 28 ms
10,624 KB
testcase_40 AC 31 ms
10,624 KB
testcase_41 AC 30 ms
10,624 KB
testcase_42 AC 30 ms
10,624 KB
testcase_43 AC 62 ms
10,624 KB
testcase_44 AC 224 ms
10,752 KB
testcase_45 AC 34 ms
10,752 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):
    if i==0 and j==0:
      continue
    else:
      cur=True
      C=[[False]*w for _ in range(h)]
      for ii in range(h):
        for jj in range(w):
          if S[ii][jj]==".":
            continue
          else:
            if C[ii][jj]==False:
              if ii+i<h and jj+j<w and S[ii+i][jj+j]=="#":
                C[ii+i][jj+j]=True
              else:
                cur=False
      if cur:
        chk=True
if chk:
  print("YES")
else:
  print("NO")
0