結果

問題 No.1954 CHECKER×CHECKER(2)
ユーザー ああいいああいい
提出日時 2022-05-21 17:42:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 1,000 ms
コード長 1,242 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 69,248 KB
最終ジャッジ日時 2024-09-20 12:01:01
合計ジャッジ時間 2,780 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,608 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 38 ms
52,608 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 38 ms
52,608 KB
testcase_08 AC 39 ms
52,480 KB
testcase_09 AC 39 ms
52,352 KB
testcase_10 AC 39 ms
52,352 KB
testcase_11 AC 40 ms
52,352 KB
testcase_12 AC 39 ms
51,968 KB
testcase_13 AC 54 ms
65,536 KB
testcase_14 AC 39 ms
52,864 KB
testcase_15 AC 42 ms
52,864 KB
testcase_16 AC 43 ms
52,992 KB
testcase_17 AC 43 ms
52,736 KB
testcase_18 AC 45 ms
53,504 KB
testcase_19 AC 45 ms
53,760 KB
testcase_20 AC 43 ms
53,376 KB
testcase_21 AC 52 ms
65,152 KB
testcase_22 AC 61 ms
68,864 KB
testcase_23 AC 41 ms
54,016 KB
testcase_24 AC 59 ms
67,072 KB
testcase_25 AC 52 ms
65,536 KB
testcase_26 AC 38 ms
52,864 KB
testcase_27 AC 54 ms
65,536 KB
testcase_28 AC 56 ms
67,200 KB
testcase_29 AC 40 ms
52,864 KB
testcase_30 AC 64 ms
69,248 KB
testcase_31 AC 42 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,input().split())
S = [input() for _ in range(H)]
M = int(input())

yoko = set()
tate = set()
for _ in range(M):
    t,n = map(int,input().split())
    if t == 1:
        yoko.add(n - 1)
    else:
        tate.add(n - 1)
gyo = [[0] * W for _ in range(H - 1)]
retu = [[0] * (W - 1) for _ in range(H)]
for i in range(H - 1):
    for j in range(W):
        if S[i][j] == S[i + 1][j]:
            gyo[i][j] = 0
        else:
            gyo[i][j] = 1
for i in range(H):
    for j in range(W - 1):
        if S[i][j] == S[i][j + 1]:
            retu[i][j] = 0
        else:
            retu[i][j] = 1
import sys
for i in range(H - 1):
    zero = False
    one = False
    for j in range(W):
        if gyo[i][j] == 1:
            one = True
        else:
            zero = True
    if zero == one:
        print('No')
        exit()
    if zero:
        if i not in yoko:
            print('No')
            exit()
for j in range(W - 1):
    zero = False
    one = False
    for i in range(H):
        if retu[i][j] == 1:
            one = True
        else:
            zero = True
    if one == zero:
        print('No')
        exit()
    if zero:
        if j not in tate:
            print('No')
            exit()
print('Yes')
0