結果

問題 No.179 塗り分け
ユーザー aka_satana_haaka_satana_ha
提出日時 2017-11-25 20:46:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,140 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-05-05 12:38:49
合計ジャッジ時間 2,867 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 28 ms
10,880 KB
testcase_06 WA -
testcase_07 AC 26 ms
10,880 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 104 ms
11,264 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 25 ms
10,752 KB
testcase_16 WA -
testcase_17 AC 26 ms
10,880 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 49 ms
11,008 KB
testcase_21 AC 26 ms
10,752 KB
testcase_22 AC 28 ms
10,752 KB
testcase_23 WA -
testcase_24 AC 26 ms
10,880 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 28 ms
10,880 KB
testcase_28 WA -
testcase_29 AC 30 ms
10,752 KB
testcase_30 WA -
testcase_31 AC 31 ms
11,008 KB
testcase_32 WA -
testcase_33 AC 33 ms
11,008 KB
testcase_34 WA -
testcase_35 AC 36 ms
11,008 KB
testcase_36 WA -
testcase_37 AC 25 ms
10,880 KB
testcase_38 AC 26 ms
11,008 KB
testcase_39 AC 26 ms
10,880 KB
testcase_40 AC 27 ms
10,880 KB
testcase_41 AC 27 ms
10,880 KB
testcase_42 AC 26 ms
10,880 KB
testcase_43 AC 27 ms
10,880 KB
testcase_44 AC 28 ms
10,752 KB
testcase_45 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mass = []
for i in range(H):
    mass.append(input())

black = [[False for i in range(W)] for j in range(H)]
black_count = 0
black_mass = []
for i in range(H):
    for j in range(W):
        if mass[i][j]=="#":
            black[i][j]=True
            black_mass.append([i,j])
            black_count+=1
        else:
            black[i][j]=False

ans=False
if len(black_mass)!=0:
    ref_point=black_mass[0]
for move_point in black_mass:
    if move_point == ref_point:
        continue
    paired_mass=[]
    paired_mass.append(ref_point)
    paired_mass.append(move_point)
    diff=[move_point[0]-ref_point[0],move_point[1]-ref_point[1]]
    for test_point in black_mass:
        tmp_add=[test_point[0]+diff[0],test_point[1]+diff[1]]
        if(test_point[0]+diff[0]>=H or test_point[1]+diff[1]>=W):
            break
        elif(black[test_point[0]+diff[0]][test_point[1]+diff[1]]==False):
            break
        paired_mass.append(test_point)
        paired_mass.append(tmp_add)
    if len(paired_mass)==len(black_mass):
        ans=True
        break

print("YES" if ans==True else "NO")
0