結果
| 問題 | No.179 塗り分け |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-05-02 00:52:08 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 525 bytes |
| コンパイル時間 | 206 ms |
| コンパイル使用メモリ | 82,368 KB |
| 実行使用メモリ | 79,680 KB |
| 最終ジャッジ日時 | 2024-11-20 20:06:36 |
| 合計ジャッジ時間 | 8,141 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 6 |
| other | WA * 40 |
ソースコード
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\n')
exit()
print('NO\n')