結果
| 問題 | No.1941 CHECKER×CHECKER(1) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-23 15:11:33 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 31 ms / 2,000 ms |
| コード長 | 176 bytes |
| 記録 | |
| コンパイル時間 | 284 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,496 KB |
| 最終ジャッジ日時 | 2024-09-20 13:06:25 |
| 合計ジャッジ時間 | 1,628 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 |
ソースコード
#yuki1941
S1=input()
S2=input()
S3=input()
if S1=='#.#' and S2=='.#.' and S3=='#.#':
print('Yes')
elif S1=='.#.' and S2=='#.#' and S3=='.#.':
print('Yes')
else:
print('No')