結果

問題 No.2871 Universal Serial Bus
ユーザー tassei903tassei903
提出日時 2024-09-07 00:01:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 782 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-09-07 00:01:56
合計ジャッジ時間 2,057 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,564 KB
testcase_01 AC 35 ms
53,344 KB
testcase_02 AC 39 ms
52,620 KB
testcase_03 AC 34 ms
54,408 KB
testcase_04 AC 35 ms
52,652 KB
testcase_05 AC 35 ms
53,540 KB
testcase_06 AC 35 ms
52,640 KB
testcase_07 AC 35 ms
53,668 KB
testcase_08 AC 35 ms
52,968 KB
testcase_09 AC 34 ms
52,968 KB
testcase_10 AC 34 ms
54,068 KB
testcase_11 AC 35 ms
52,724 KB
testcase_12 AC 35 ms
52,764 KB
testcase_13 AC 39 ms
53,000 KB
testcase_14 AC 34 ms
53,628 KB
testcase_15 AC 34 ms
54,296 KB
testcase_16 AC 34 ms
53,260 KB
testcase_17 AC 35 ms
53,804 KB
testcase_18 AC 36 ms
53,544 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 == [x[::-1] for x in 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