結果

問題 No.179 塗り分け
ユーザー とりすけとりすけ
提出日時 2023-05-02 00:55:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 537 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 79,472 KB
最終ジャッジ日時 2024-11-20 20:09:03
合計ジャッジ時間 7,839 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,700 KB
testcase_01 AC 41 ms
54,428 KB
testcase_02 AC 38 ms
54,432 KB
testcase_03 AC 37 ms
54,984 KB
testcase_04 AC 41 ms
56,072 KB
testcase_05 AC 112 ms
77,272 KB
testcase_06 AC 39 ms
55,780 KB
testcase_07 WA -
testcase_08 AC 315 ms
78,924 KB
testcase_09 WA -
testcase_10 AC 48 ms
63,552 KB
testcase_11 AC 43 ms
63,484 KB
testcase_12 AC 257 ms
78,092 KB
testcase_13 AC 47 ms
62,976 KB
testcase_14 AC 52 ms
67,788 KB
testcase_15 AC 37 ms
53,596 KB
testcase_16 AC 37 ms
54,208 KB
testcase_17 AC 36 ms
53,760 KB
testcase_18 AC 57 ms
73,208 KB
testcase_19 AC 55 ms
72,840 KB
testcase_20 AC 284 ms
78,320 KB
testcase_21 AC 317 ms
78,732 KB
testcase_22 AC 348 ms
78,404 KB
testcase_23 AC 44 ms
62,284 KB
testcase_24 AC 328 ms
78,836 KB
testcase_25 AC 59 ms
69,708 KB
testcase_26 WA -
testcase_27 AC 310 ms
78,676 KB
testcase_28 WA -
testcase_29 AC 336 ms
78,284 KB
testcase_30 WA -
testcase_31 AC 311 ms
78,268 KB
testcase_32 AC 125 ms
76,756 KB
testcase_33 AC 312 ms
78,716 KB
testcase_34 WA -
testcase_35 AC 307 ms
78,424 KB
testcase_36 AC 39 ms
54,636 KB
testcase_37 AC 40 ms
54,132 KB
testcase_38 AC 40 ms
54,184 KB
testcase_39 AC 38 ms
53,932 KB
testcase_40 AC 44 ms
61,276 KB
testcase_41 AC 35 ms
53,620 KB
testcase_42 AC 37 ms
54,948 KB
testcase_43 AC 63 ms
76,400 KB
testcase_44 AC 93 ms
76,780 KB
testcase_45 AC 50 ms
66,980 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