結果

問題 No.1941 CHECKER×CHECKER(1)
ユーザー MaboyMaboy
提出日時 2023-02-06 12:44:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 125 bytes
コンパイル時間 732 ms
コンパイル使用メモリ 10,572 KB
実行使用メモリ 7,860 KB
最終ジャッジ日時 2023-09-18 00:33:17
合計ジャッジ時間 1,674 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 16 ms
7,752 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 16 ms
7,720 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 16 ms
7,712 KB
testcase_10 AC 16 ms
7,756 KB
testcase_11 AC 16 ms
7,720 KB
testcase_12 AC 16 ms
7,752 KB
testcase_13 RE -
testcase_14 AC 15 ms
7,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c = [input() for _ in range(3)]
if a in ("#.#",".#.") and a.replace() == b and a == c:
    print("Yes")
else: print("No")
0