結果

問題 No.1954 CHECKER×CHECKER(2)
ユーザー roarisroaris
提出日時 2022-05-27 21:12:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 1,000 ms
コード長 1,058 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 69,408 KB
最終ジャッジ日時 2024-09-20 15:23:51
合計ジャッジ時間 2,296 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,824 KB
testcase_01 AC 34 ms
53,220 KB
testcase_02 AC 35 ms
53,408 KB
testcase_03 AC 36 ms
52,424 KB
testcase_04 AC 36 ms
52,888 KB
testcase_05 AC 36 ms
52,768 KB
testcase_06 AC 36 ms
52,540 KB
testcase_07 AC 35 ms
52,088 KB
testcase_08 AC 34 ms
52,356 KB
testcase_09 AC 35 ms
53,076 KB
testcase_10 AC 38 ms
54,060 KB
testcase_11 AC 34 ms
53,648 KB
testcase_12 AC 38 ms
53,904 KB
testcase_13 AC 49 ms
65,024 KB
testcase_14 AC 36 ms
52,744 KB
testcase_15 AC 39 ms
54,000 KB
testcase_16 AC 36 ms
52,960 KB
testcase_17 AC 34 ms
53,176 KB
testcase_18 AC 35 ms
54,376 KB
testcase_19 AC 35 ms
54,192 KB
testcase_20 AC 34 ms
54,376 KB
testcase_21 AC 44 ms
65,012 KB
testcase_22 AC 53 ms
67,784 KB
testcase_23 AC 36 ms
53,852 KB
testcase_24 AC 50 ms
66,680 KB
testcase_25 AC 41 ms
62,348 KB
testcase_26 AC 37 ms
54,088 KB
testcase_27 AC 44 ms
62,540 KB
testcase_28 AC 48 ms
64,628 KB
testcase_29 AC 35 ms
53,436 KB
testcase_30 AC 54 ms
69,408 KB
testcase_31 AC 36 ms
52,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H, W = map(int, input().split())
S = [list(input()[:-1]) for _ in range(H)]

for i in range(H):
    for j in range(W):
        if (i+j)%2==1:
            if S[i][j]=='.':
                S[i][j] = '#'
            else:
                S[i][j] = '.'

M = int(input())
hs, ws = set(), set()

for _ in range(M):
    t, n = map(int, input().split())
    
    if t==1:
        hs.add(n-1)
    else:
        ws.add(n-1)

for i in range(H-1):
    for j in range(W):
        if S[i][0]!=S[i+1][0] and S[i][j]==S[i+1][j]:
            exit(print('No'))
        
        if S[i][0]==S[i+1][0] and S[i][j]!=S[i+1][j]:
            exit(print('No'))
    
    if S[i][0]!=S[i+1][0] and i not in hs:
        exit(print('No'))

for i in range(W-1):
    for j in range(H):
        if S[0][i]!=S[0][i+1] and S[j][i]==S[j][i+1]:
            exit(print('No'))
        
        if S[0][i]==S[0][i+1] and S[j][i]!=S[j][i+1]:
            exit(print('No'))
    
    if S[0][i]!=S[0][i+1] and i not in ws:
        exit(print('No'))

print('Yes')
0