結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 39 ms
54,144 KB
testcase_02 AC 36 ms
54,016 KB
testcase_03 AC 37 ms
54,016 KB
testcase_04 AC 38 ms
54,016 KB
testcase_05 AC 145 ms
77,824 KB
testcase_06 AC 36 ms
54,272 KB
testcase_07 WA -
testcase_08 AC 276 ms
78,720 KB
testcase_09 AC 490 ms
79,508 KB
testcase_10 AC 51 ms
63,744 KB
testcase_11 AC 50 ms
63,744 KB
testcase_12 AC 453 ms
78,976 KB
testcase_13 AC 53 ms
66,560 KB
testcase_14 AC 53 ms
71,680 KB
testcase_15 WA -
testcase_16 AC 36 ms
53,376 KB
testcase_17 WA -
testcase_18 AC 58 ms
73,984 KB
testcase_19 AC 60 ms
73,984 KB
testcase_20 AC 507 ms
80,640 KB
testcase_21 AC 544 ms
81,064 KB
testcase_22 AC 585 ms
80,128 KB
testcase_23 AC 46 ms
64,000 KB
testcase_24 AC 506 ms
80,256 KB
testcase_25 AC 52 ms
68,736 KB
testcase_26 AC 367 ms
79,892 KB
testcase_27 AC 612 ms
79,920 KB
testcase_28 AC 321 ms
78,080 KB
testcase_29 AC 556 ms
79,488 KB
testcase_30 AC 380 ms
78,976 KB
testcase_31 AC 575 ms
79,996 KB
testcase_32 AC 129 ms
76,800 KB
testcase_33 AC 518 ms
80,740 KB
testcase_34 AC 360 ms
79,488 KB
testcase_35 AC 548 ms
79,872 KB
testcase_36 AC 38 ms
54,016 KB
testcase_37 AC 37 ms
54,144 KB
testcase_38 AC 35 ms
54,016 KB
testcase_39 AC 39 ms
54,272 KB
testcase_40 AC 41 ms
61,568 KB
testcase_41 AC 37 ms
53,888 KB
testcase_42 AC 42 ms
61,440 KB
testcase_43 AC 77 ms
76,416 KB
testcase_44 AC 135 ms
77,696 KB
testcase_45 AC 60 ms
70,400 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