結果

問題 No.179 塗り分け
ユーザー maspymaspy
提出日時 2020-02-02 13:35:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 709 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 101,556 KB
最終ジャッジ日時 2024-09-18 20:40:47
合計ジャッジ時間 14,838 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
67,712 KB
testcase_01 AC 185 ms
79,488 KB
testcase_02 WA -
testcase_03 AC 164 ms
79,232 KB
testcase_04 AC 57 ms
75,628 KB
testcase_05 AC 306 ms
84,284 KB
testcase_06 AC 44 ms
59,904 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 42 ms
60,416 KB
testcase_11 AC 42 ms
60,416 KB
testcase_12 AC 569 ms
99,072 KB
testcase_13 WA -
testcase_14 AC 167 ms
79,680 KB
testcase_15 AC 164 ms
79,504 KB
testcase_16 AC 38 ms
59,136 KB
testcase_17 WA -
testcase_18 AC 63 ms
76,032 KB
testcase_19 AC 64 ms
76,416 KB
testcase_20 AC 577 ms
98,104 KB
testcase_21 AC 634 ms
101,376 KB
testcase_22 AC 635 ms
101,200 KB
testcase_23 AC 47 ms
61,952 KB
testcase_24 AC 588 ms
100,480 KB
testcase_25 WA -
testcase_26 AC 306 ms
84,912 KB
testcase_27 AC 615 ms
100,096 KB
testcase_28 WA -
testcase_29 AC 598 ms
99,916 KB
testcase_30 AC 174 ms
80,512 KB
testcase_31 AC 622 ms
98,944 KB
testcase_32 AC 289 ms
84,580 KB
testcase_33 AC 591 ms
99,072 KB
testcase_34 AC 64 ms
76,004 KB
testcase_35 AC 569 ms
100,572 KB
testcase_36 AC 163 ms
79,488 KB
testcase_37 AC 173 ms
79,692 KB
testcase_38 AC 166 ms
78,592 KB
testcase_39 AC 159 ms
79,044 KB
testcase_40 AC 169 ms
79,744 KB
testcase_41 AC 282 ms
81,024 KB
testcase_42 AC 291 ms
81,152 KB
testcase_43 AC 214 ms
81,408 KB
testcase_44 AC 308 ms
85,052 KB
testcase_45 AC 195 ms
80,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

from math import gcd
import itertools

H,W = map(int,readline().split())
data = ''.join(read().decode().split())

def test(a,b):
    if abs(gcd(a,b)) > 1:
        return False
    # ax + by = const 上をまとめる
    words = [[] for _ in range(5000)]
    for x,y in itertools.product(range(H), range(W)):
        key = a * x + b * y
        words[key].append(data[W*x+y])
    for w in words:
        if ''.join(w).replace('##','').find('#') != -1:
            return False
    return True

answer = 'YES' if any(test(a,b) for a in range(51) for b in range(-51,51)) else 'NO'
print(answer)
0