結果

問題 No.179 塗り分け
ユーザー なえしらなえしら
提出日時 2023-11-23 17:40:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 452 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 80,016 KB
最終ジャッジ日時 2024-09-26 08:15:32
合計ジャッジ時間 5,900 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 78 ms
76,432 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 34 ms
51,840 KB
testcase_08 AC 162 ms
79,488 KB
testcase_09 WA -
testcase_10 AC 40 ms
59,264 KB
testcase_11 AC 38 ms
59,104 KB
testcase_12 AC 162 ms
77,824 KB
testcase_13 AC 42 ms
60,928 KB
testcase_14 AC 42 ms
60,032 KB
testcase_15 AC 34 ms
51,968 KB
testcase_16 AC 34 ms
51,968 KB
testcase_17 AC 34 ms
52,352 KB
testcase_18 AC 54 ms
73,344 KB
testcase_19 AC 53 ms
72,576 KB
testcase_20 AC 159 ms
79,224 KB
testcase_21 AC 172 ms
79,228 KB
testcase_22 AC 181 ms
78,908 KB
testcase_23 AC 39 ms
59,008 KB
testcase_24 AC 170 ms
79,104 KB
testcase_25 AC 47 ms
66,048 KB
testcase_26 WA -
testcase_27 AC 198 ms
78,976 KB
testcase_28 WA -
testcase_29 AC 200 ms
78,576 KB
testcase_30 WA -
testcase_31 AC 192 ms
78,796 KB
testcase_32 AC 113 ms
76,416 KB
testcase_33 AC 190 ms
78,336 KB
testcase_34 WA -
testcase_35 AC 193 ms
78,444 KB
testcase_36 AC 36 ms
52,480 KB
testcase_37 AC 34 ms
52,096 KB
testcase_38 AC 36 ms
52,224 KB
testcase_39 AC 33 ms
52,096 KB
testcase_40 AC 33 ms
52,352 KB
testcase_41 AC 33 ms
51,712 KB
testcase_42 AC 33 ms
52,224 KB
testcase_43 AC 56 ms
72,064 KB
testcase_44 AC 73 ms
76,472 KB
testcase_45 AC 45 ms
62,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product

H, W = map(int, input().split())
S = [input() for i in range(H)]

if S == ['.'*W]*H:
  print("NO")
  exit()

for p, q in product(range(H), range(W)):
  if p == q == 0: continue
  T = [list(S[i]) for i in range(H)]
  for i, j in product(range(H-p), range(W-q)):
    if T[i][j] == T[p+i][q+j] == '#':
      T[i][j] = T[p+i][q+j] = '!'
  
  if all('#' not in row for row in T):
    print("YES")
    break
else:
  print("NO")
0