結果

問題 No.2871 Universal Serial Bus
ユーザー ikoma
提出日時 2024-09-06 22:38:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 334 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 54,204 KB
最終ジャッジ日時 2024-09-06 22:38:15
合計ジャッジ時間 1,691 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 9 WA * 9
権限があれば一括ダウンロードができます

ソースコード

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(0)
0