結果

問題 No.179 塗り分け
ユーザー とりすけとりすけ
提出日時 2023-05-02 01:05:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,045 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 81,104 KB
最終ジャッジ日時 2024-04-30 22:01:26
合計ジャッジ時間 10,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,056 KB
testcase_01 AC 37 ms
54,972 KB
testcase_02 AC 40 ms
54,224 KB
testcase_03 AC 37 ms
55,416 KB
testcase_04 AC 36 ms
55,564 KB
testcase_05 AC 153 ms
77,668 KB
testcase_06 AC 39 ms
54,384 KB
testcase_07 WA -
testcase_08 AC 271 ms
78,660 KB
testcase_09 AC 481 ms
79,536 KB
testcase_10 AC 46 ms
64,500 KB
testcase_11 AC 48 ms
63,452 KB
testcase_12 AC 445 ms
79,208 KB
testcase_13 AC 51 ms
66,856 KB
testcase_14 AC 53 ms
73,748 KB
testcase_15 WA -
testcase_16 AC 36 ms
54,620 KB
testcase_17 WA -
testcase_18 AC 59 ms
74,444 KB
testcase_19 AC 59 ms
74,408 KB
testcase_20 AC 490 ms
80,884 KB
testcase_21 AC 528 ms
80,952 KB
testcase_22 AC 569 ms
80,324 KB
testcase_23 AC 47 ms
64,676 KB
testcase_24 AC 504 ms
79,984 KB
testcase_25 AC 53 ms
70,292 KB
testcase_26 AC 356 ms
80,024 KB
testcase_27 AC 535 ms
79,788 KB
testcase_28 AC 297 ms
78,212 KB
testcase_29 AC 575 ms
79,756 KB
testcase_30 AC 373 ms
78,704 KB
testcase_31 AC 536 ms
80,120 KB
testcase_32 AC 122 ms
77,072 KB
testcase_33 AC 512 ms
81,104 KB
testcase_34 AC 336 ms
79,316 KB
testcase_35 AC 516 ms
79,904 KB
testcase_36 AC 36 ms
54,864 KB
testcase_37 AC 37 ms
55,624 KB
testcase_38 AC 36 ms
55,540 KB
testcase_39 AC 36 ms
55,744 KB
testcase_40 AC 43 ms
63,300 KB
testcase_41 AC 37 ms
54,220 KB
testcase_42 AC 39 ms
61,684 KB
testcase_43 AC 71 ms
76,680 KB
testcase_44 AC 133 ms
77,676 KB
testcase_45 AC 57 ms
71,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import copy

input = sys.stdin.readline

h, w = map(int, input().split())
s = [list(input().strip()) for i in range(h)]

c = 0
for i in range(h):
 for j in range(w):
  if s[i][j] == '#':
   c += 1

if c <= 1:
 print('NO', end='')

for dy in range(h):
 for dx in range(w):
  if dy == 0 and dx == 0:
   continue
  sc = copy.deepcopy(s)
  flag = True
  for i in range(h):
   for j in range(w):
    if sc[i][j] == '#':
     if i + dy >= h or j + dx >= w or sc[i+dy][j+dx] == '.':
      flag = False
      break
     else:
      sc[i+dy][j+dx] = '.'
   if not flag:
    break
  if flag:
   print('YES', end='')
   exit()

for dy in range(h):
 for dx in range(w):
  if dy == 0 and dx == 0:
   continue
  sc = copy.deepcopy(s)
  flag = True
  for i in range(h):
   for j in range(w):
    if sc[i][w-j-1] == '#':
     if i + dy >= h or j + dx >= w or sc[i+dy][w-j-dx-1] == '.':
      flag = False
      break
     else:
      sc[i+dy][w-j-dx-1] = '.'
   if not flag:
    break
  if flag:
   print('YES', end='')
   exit()
print('NO', end='')
0