結果

問題 No.2871 Universal Serial Bus
ユーザー ikomaikoma
提出日時 2024-09-06 22:39:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,892 KB
実行使用メモリ 54,100 KB
最終ジャッジ日時 2024-09-06 22:39:15
合計ジャッジ時間 1,897 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,416 KB
testcase_01 AC 39 ms
52,836 KB
testcase_02 WA -
testcase_03 AC 39 ms
52,516 KB
testcase_04 AC 38 ms
53,340 KB
testcase_05 WA -
testcase_06 AC 38 ms
52,084 KB
testcase_07 AC 38 ms
52,944 KB
testcase_08 AC 39 ms
52,072 KB
testcase_09 AC 38 ms
52,680 KB
testcase_10 AC 39 ms
52,204 KB
testcase_11 AC 40 ms
53,144 KB
testcase_12 AC 39 ms
52,944 KB
testcase_13 AC 40 ms
52,404 KB
testcase_14 AC 39 ms
54,100 KB
testcase_15 WA -
testcase_16 AC 39 ms
53,488 KB
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
S=[input().strip() for _ in range(H)]
T=[input().strip() for _ in range(H)]
S = [s.replace("#","0").replace(".","#").replace("0",".") for s in S]
ans = [3.531740190461733, 3.128936827211877]
if S==T:
    print(ans[0])
    exit()
S = [s[::-1] for s in S[::-1]]
if S==T:
    print(ans[1])
else:
    print(-1)
0