結果

問題 No.179 塗り分け
ユーザー とりすけとりすけ
提出日時 2023-05-02 01:06:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 598 ms / 3,000 ms
コード長 1,053 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 80,916 KB
最終ジャッジ日時 2024-04-30 22:01:41
合計ジャッジ時間 10,517 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,380 KB
testcase_01 AC 36 ms
55,108 KB
testcase_02 AC 37 ms
54,380 KB
testcase_03 AC 38 ms
54,680 KB
testcase_04 AC 39 ms
54,592 KB
testcase_05 AC 149 ms
77,532 KB
testcase_06 AC 42 ms
55,432 KB
testcase_07 AC 39 ms
60,860 KB
testcase_08 AC 267 ms
78,404 KB
testcase_09 AC 473 ms
79,468 KB
testcase_10 AC 48 ms
64,144 KB
testcase_11 AC 47 ms
63,600 KB
testcase_12 AC 448 ms
79,084 KB
testcase_13 AC 56 ms
67,796 KB
testcase_14 AC 55 ms
71,668 KB
testcase_15 AC 39 ms
55,216 KB
testcase_16 AC 37 ms
55,164 KB
testcase_17 AC 36 ms
54,176 KB
testcase_18 AC 58 ms
74,508 KB
testcase_19 AC 59 ms
74,476 KB
testcase_20 AC 501 ms
80,292 KB
testcase_21 AC 528 ms
80,868 KB
testcase_22 AC 566 ms
80,008 KB
testcase_23 AC 47 ms
63,720 KB
testcase_24 AC 510 ms
80,068 KB
testcase_25 AC 54 ms
69,968 KB
testcase_26 AC 347 ms
80,032 KB
testcase_27 AC 598 ms
79,920 KB
testcase_28 AC 298 ms
78,304 KB
testcase_29 AC 545 ms
79,588 KB
testcase_30 AC 389 ms
78,864 KB
testcase_31 AC 548 ms
79,848 KB
testcase_32 AC 127 ms
76,956 KB
testcase_33 AC 567 ms
80,916 KB
testcase_34 AC 370 ms
79,396 KB
testcase_35 AC 548 ms
79,856 KB
testcase_36 AC 37 ms
54,712 KB
testcase_37 AC 36 ms
54,508 KB
testcase_38 AC 37 ms
55,848 KB
testcase_39 AC 40 ms
54,772 KB
testcase_40 AC 44 ms
63,056 KB
testcase_41 AC 38 ms
54,312 KB
testcase_42 AC 42 ms
62,824 KB
testcase_43 AC 74 ms
76,472 KB
testcase_44 AC 134 ms
77,888 KB
testcase_45 AC 57 ms
70,764 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='')
 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][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