結果
| 問題 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 6 |
| other | AC * 34 WA * 6 |
ソースコード
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='')