結果

問題 No.179 塗り分け
ユーザー とりすけとりすけ
提出日時 2023-05-02 00:55:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 537 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 79,564 KB
最終ジャッジ日時 2024-04-30 21:58:46
合計ジャッジ時間 9,105 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,492 KB
testcase_01 AC 44 ms
54,344 KB
testcase_02 AC 43 ms
53,736 KB
testcase_03 AC 44 ms
53,816 KB
testcase_04 AC 45 ms
54,656 KB
testcase_05 AC 127 ms
77,172 KB
testcase_06 AC 44 ms
54,148 KB
testcase_07 WA -
testcase_08 AC 345 ms
78,736 KB
testcase_09 WA -
testcase_10 AC 52 ms
63,632 KB
testcase_11 AC 52 ms
63,620 KB
testcase_12 AC 298 ms
78,236 KB
testcase_13 AC 51 ms
63,452 KB
testcase_14 AC 58 ms
67,760 KB
testcase_15 AC 42 ms
53,900 KB
testcase_16 AC 43 ms
54,624 KB
testcase_17 AC 42 ms
55,004 KB
testcase_18 AC 67 ms
73,692 KB
testcase_19 AC 66 ms
73,136 KB
testcase_20 AC 335 ms
78,212 KB
testcase_21 AC 366 ms
79,180 KB
testcase_22 AC 395 ms
78,380 KB
testcase_23 AC 51 ms
62,408 KB
testcase_24 AC 359 ms
78,896 KB
testcase_25 AC 62 ms
69,708 KB
testcase_26 WA -
testcase_27 AC 371 ms
78,680 KB
testcase_28 WA -
testcase_29 AC 378 ms
78,564 KB
testcase_30 WA -
testcase_31 AC 351 ms
78,168 KB
testcase_32 AC 147 ms
77,004 KB
testcase_33 AC 354 ms
78,760 KB
testcase_34 WA -
testcase_35 AC 354 ms
78,684 KB
testcase_36 AC 44 ms
55,196 KB
testcase_37 AC 44 ms
54,848 KB
testcase_38 AC 44 ms
54,552 KB
testcase_39 AC 43 ms
54,748 KB
testcase_40 AC 49 ms
61,548 KB
testcase_41 AC 44 ms
53,760 KB
testcase_42 AC 45 ms
54,840 KB
testcase_43 AC 77 ms
76,436 KB
testcase_44 AC 110 ms
76,816 KB
testcase_45 AC 59 ms
66,320 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)]

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()
print('NO', end='')
0