結果

問題 No.179 塗り分け
ユーザー とりすけとりすけ
提出日時 2023-05-02 00:49:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 521 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 80,048 KB
最終ジャッジ日時 2024-04-30 21:53:54
合計ジャッジ時間 9,064 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,472 KB
testcase_01 AC 44 ms
54,252 KB
testcase_02 AC 43 ms
54,392 KB
testcase_03 AC 44 ms
54,380 KB
testcase_04 AC 44 ms
54,152 KB
testcase_05 AC 122 ms
77,376 KB
testcase_06 AC 44 ms
55,536 KB
testcase_07 WA -
testcase_08 AC 359 ms
78,868 KB
testcase_09 WA -
testcase_10 AC 53 ms
63,980 KB
testcase_11 AC 53 ms
62,744 KB
testcase_12 AC 298 ms
78,220 KB
testcase_13 AC 52 ms
62,700 KB
testcase_14 AC 56 ms
68,156 KB
testcase_15 AC 43 ms
54,984 KB
testcase_16 AC 42 ms
54,048 KB
testcase_17 AC 42 ms
53,876 KB
testcase_18 AC 65 ms
74,288 KB
testcase_19 AC 65 ms
74,456 KB
testcase_20 AC 338 ms
78,104 KB
testcase_21 AC 380 ms
79,056 KB
testcase_22 AC 393 ms
78,752 KB
testcase_23 AC 50 ms
62,416 KB
testcase_24 AC 385 ms
78,952 KB
testcase_25 AC 60 ms
69,484 KB
testcase_26 WA -
testcase_27 AC 362 ms
78,420 KB
testcase_28 WA -
testcase_29 AC 383 ms
78,536 KB
testcase_30 WA -
testcase_31 AC 354 ms
78,388 KB
testcase_32 AC 147 ms
76,968 KB
testcase_33 AC 368 ms
78,524 KB
testcase_34 WA -
testcase_35 AC 350 ms
78,316 KB
testcase_36 AC 45 ms
53,676 KB
testcase_37 AC 45 ms
54,220 KB
testcase_38 AC 43 ms
54,404 KB
testcase_39 AC 43 ms
54,984 KB
testcase_40 AC 49 ms
61,496 KB
testcase_41 AC 43 ms
54,280 KB
testcase_42 AC 43 ms
54,756 KB
testcase_43 AC 77 ms
76,504 KB
testcase_44 AC 112 ms
76,764 KB
testcase_45 AC 60 ms
67,472 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')
   exit()
print('NO')
0