結果

問題 No.179 塗り分け
ユーザー maspymaspy
提出日時 2020-02-02 13:32:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 657 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 110,592 KB
最終ジャッジ日時 2024-09-18 20:39:35
合計ジャッジ時間 19,418 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
75,264 KB
testcase_01 AC 238 ms
79,744 KB
testcase_02 WA -
testcase_03 AC 220 ms
81,320 KB
testcase_04 AC 77 ms
76,288 KB
testcase_05 AC 409 ms
87,168 KB
testcase_06 AC 65 ms
76,160 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 41 ms
60,544 KB
testcase_11 AC 41 ms
60,544 KB
testcase_12 AC 819 ms
107,136 KB
testcase_13 WA -
testcase_14 AC 201 ms
77,568 KB
testcase_15 AC 197 ms
80,128 KB
testcase_16 AC 42 ms
58,752 KB
testcase_17 WA -
testcase_18 AC 82 ms
76,672 KB
testcase_19 AC 82 ms
76,288 KB
testcase_20 AC 802 ms
108,384 KB
testcase_21 AC 878 ms
108,676 KB
testcase_22 AC 881 ms
109,760 KB
testcase_23 AC 59 ms
76,096 KB
testcase_24 AC 819 ms
107,264 KB
testcase_25 WA -
testcase_26 AC 380 ms
88,448 KB
testcase_27 AC 832 ms
108,544 KB
testcase_28 WA -
testcase_29 AC 814 ms
108,928 KB
testcase_30 AC 251 ms
83,200 KB
testcase_31 AC 840 ms
109,152 KB
testcase_32 AC 385 ms
87,680 KB
testcase_33 AC 824 ms
105,856 KB
testcase_34 AC 84 ms
76,332 KB
testcase_35 AC 826 ms
107,360 KB
testcase_36 AC 192 ms
80,268 KB
testcase_37 AC 214 ms
80,768 KB
testcase_38 AC 213 ms
80,768 KB
testcase_39 AC 197 ms
78,588 KB
testcase_40 AC 215 ms
80,384 KB
testcase_41 AC 376 ms
82,816 KB
testcase_42 AC 368 ms
83,200 KB
testcase_43 AC 283 ms
83,712 KB
testcase_44 AC 416 ms
87,296 KB
testcase_45 AC 247 ms
81,640 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):
    # 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('##','').count('#'):
            return False
    return True

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