結果

問題 No.2871 Universal Serial Bus
ユーザー ikomaikoma
提出日時 2024-09-06 22:50:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 53,848 KB
最終ジャッジ日時 2024-09-06 22:50:06
合計ジャッジ時間 1,949 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,896 KB
testcase_01 AC 39 ms
52,476 KB
testcase_02 AC 39 ms
53,104 KB
testcase_03 AC 38 ms
52,348 KB
testcase_04 AC 38 ms
53,552 KB
testcase_05 AC 39 ms
53,036 KB
testcase_06 AC 38 ms
52,548 KB
testcase_07 AC 38 ms
52,992 KB
testcase_08 AC 39 ms
52,604 KB
testcase_09 AC 39 ms
52,696 KB
testcase_10 AC 39 ms
52,320 KB
testcase_11 AC 39 ms
53,004 KB
testcase_12 AC 38 ms
52,880 KB
testcase_13 AC 39 ms
52,412 KB
testcase_14 AC 39 ms
52,992 KB
testcase_15 AC 39 ms
52,680 KB
testcase_16 AC 40 ms
53,848 KB
testcase_17 AC 39 ms
53,420 KB
testcase_18 AC 39 ms
53,412 KB
権限があれば一括ダウンロードができます

ソースコード

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]
S2 = [s[::-1] for s in S[::-1]]
if S==T and S2==T:
    print(2.641632560655154)
elif S==T:
    print(3.531740190461733)
elif S2==T:
    print(3.128936827211877)
else:
    print(-1)
0