結果

問題 No.2871 Universal Serial Bus
ユーザー tassei903tassei903
提出日時 2024-09-06 23:59:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 763 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 82,656 KB
実行使用メモリ 54,480 KB
最終ジャッジ日時 2024-09-06 23:59:22
合計ジャッジ時間 1,740 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,480 KB
testcase_01 AC 38 ms
53,748 KB
testcase_02 AC 37 ms
53,088 KB
testcase_03 AC 38 ms
53,992 KB
testcase_04 AC 38 ms
53,372 KB
testcase_05 AC 37 ms
52,852 KB
testcase_06 AC 38 ms
53,392 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 38 ms
53,412 KB
testcase_10 AC 37 ms
53,760 KB
testcase_11 WA -
testcase_12 AC 37 ms
52,380 KB
testcase_13 AC 37 ms
53,456 KB
testcase_14 AC 38 ms
53,504 KB
testcase_15 AC 39 ms
54,056 KB
testcase_16 AC 38 ms
52,740 KB
testcase_17 AC 39 ms
52,992 KB
testcase_18 AC 38 ms
53,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

h,w = na()
s = [list(input()) for i in range(h)]
t = [["#" if x == "." else "." for x in input()] for i in range(h)]


A = (s == t)
B = (s == t[::-1])
s = 1
ans = 0
if A or B:
    for i in range(10**6):
        if (i % 2 == 0 and A) or (i % 2 == 1 and B):
            ans += s * (1 - 1/2**i) * (i+1)
            s -= s * (1 - 1/2**i)
        if s < 10**-9:
            break
    print(ans)
else:
    print(-1)
0