結果

問題 No.179 塗り分け
ユーザー AT274_AT274_
提出日時 2019-10-23 21:27:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 864 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 76,744 KB
最終ジャッジ日時 2024-07-07 04:27:27
合計ジャッジ時間 4,014 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,804 KB
testcase_01 AC 33 ms
52,736 KB
testcase_02 AC 31 ms
53,800 KB
testcase_03 AC 32 ms
52,108 KB
testcase_04 AC 30 ms
52,544 KB
testcase_05 AC 55 ms
73,148 KB
testcase_06 AC 32 ms
52,612 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
59,748 KB
testcase_11 AC 37 ms
60,900 KB
testcase_12 AC 80 ms
76,416 KB
testcase_13 AC 34 ms
58,532 KB
testcase_14 AC 38 ms
60,692 KB
testcase_15 AC 31 ms
52,300 KB
testcase_16 WA -
testcase_17 AC 30 ms
52,424 KB
testcase_18 AC 48 ms
67,520 KB
testcase_19 AC 48 ms
67,916 KB
testcase_20 AC 95 ms
76,292 KB
testcase_21 AC 80 ms
76,244 KB
testcase_22 AC 98 ms
76,556 KB
testcase_23 AC 38 ms
60,920 KB
testcase_24 AC 79 ms
76,096 KB
testcase_25 AC 44 ms
64,924 KB
testcase_26 WA -
testcase_27 AC 90 ms
76,292 KB
testcase_28 WA -
testcase_29 AC 95 ms
76,044 KB
testcase_30 WA -
testcase_31 AC 89 ms
76,368 KB
testcase_32 AC 84 ms
76,192 KB
testcase_33 AC 99 ms
76,672 KB
testcase_34 WA -
testcase_35 AC 93 ms
76,616 KB
testcase_36 AC 33 ms
53,784 KB
testcase_37 AC 31 ms
52,328 KB
testcase_38 AC 30 ms
53,540 KB
testcase_39 AC 31 ms
52,132 KB
testcase_40 AC 31 ms
52,340 KB
testcase_41 AC 31 ms
53,020 KB
testcase_42 AC 31 ms
53,256 KB
testcase_43 AC 44 ms
64,888 KB
testcase_44 AC 50 ms
72,376 KB
testcase_45 AC 40 ms
60,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

H, W = map(int, input().split())
G = [list(input()) for i in range(H)]
break_flg = False
for d in range((H + 1) // 2):
for r in range((W + 1) // 2):
if (d == 0) and (r == 0):
continue
T = [[0 if G[i][j] == '#' else -1 for j in range(W)] for i in range(H)]
for i in range(H):
for j in range(W):
if T[i][j] == 0:
if not ((0 <= i + d < H) and (0 <= j + r < W)):
break_flg = True
break
if T[i + d][j + r] == 0:
T[i + d][j + r] += 1
else:
break_flg = True
break
if break_flg:
break_flg = False
break
else:
print('YES')
exit()
print('NO')
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0