結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,748 KB
testcase_01 AC 38 ms
54,836 KB
testcase_02 AC 40 ms
55,280 KB
testcase_03 AC 43 ms
55,808 KB
testcase_04 AC 39 ms
54,700 KB
testcase_05 AC 146 ms
77,652 KB
testcase_06 AC 37 ms
55,712 KB
testcase_07 AC 41 ms
61,328 KB
testcase_08 AC 280 ms
78,496 KB
testcase_09 AC 491 ms
79,472 KB
testcase_10 AC 52 ms
64,804 KB
testcase_11 AC 49 ms
63,956 KB
testcase_12 AC 448 ms
79,092 KB
testcase_13 AC 52 ms
66,204 KB
testcase_14 AC 56 ms
71,668 KB
testcase_15 AC 37 ms
54,612 KB
testcase_16 AC 37 ms
55,768 KB
testcase_17 AC 37 ms
54,252 KB
testcase_18 AC 59 ms
74,552 KB
testcase_19 AC 58 ms
73,932 KB
testcase_20 AC 555 ms
80,500 KB
testcase_21 AC 533 ms
81,220 KB
testcase_22 AC 603 ms
80,312 KB
testcase_23 AC 52 ms
65,012 KB
testcase_24 AC 527 ms
79,920 KB
testcase_25 AC 58 ms
69,208 KB
testcase_26 AC 410 ms
79,644 KB
testcase_27 AC 541 ms
80,048 KB
testcase_28 AC 306 ms
78,392 KB
testcase_29 AC 521 ms
79,828 KB
testcase_30 AC 393 ms
78,824 KB
testcase_31 AC 580 ms
80,016 KB
testcase_32 AC 130 ms
76,752 KB
testcase_33 AC 519 ms
80,968 KB
testcase_34 AC 345 ms
79,488 KB
testcase_35 AC 541 ms
79,820 KB
testcase_36 AC 39 ms
55,888 KB
testcase_37 AC 40 ms
55,696 KB
testcase_38 AC 40 ms
54,256 KB
testcase_39 AC 36 ms
55,240 KB
testcase_40 AC 40 ms
61,944 KB
testcase_41 AC 37 ms
55,768 KB
testcase_42 AC 42 ms
61,508 KB
testcase_43 AC 77 ms
76,548 KB
testcase_44 AC 135 ms
77,744 KB
testcase_45 AC 58 ms
71,900 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