結果

問題 No.1941 CHECKER×CHECKER(1)
ユーザー tnodino
提出日時 2022-05-21 06:29:38
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 1,138 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-09-20 11:07:33
合計ジャッジ時間 2,069 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

S1 = input()
S2 = input()
S3 = input()
B = "#.#"
W = ".#."
if S1 == B == S3 and S2 == W:
    print('Yes')
elif S1 == W == S3 and S2 == B:
    print('Yes')
else:
    print('No')
0