結果

問題 No.2871 Universal Serial Bus
ユーザー nikoro256nikoro256
提出日時 2024-09-06 21:59:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 1,037 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-09-06 21:59:49
合計ジャッジ時間 1,891 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
S = []
for _ in range(H):
    S.append(input())
T = []
Trev = []
for _ in range(H):
    s = input()
    s = s.replace(".", "@")
    s = s.replace("#", ".")
    s = s.replace("@", "#")
    Trev.append(s[::-1])
    T.append(s)
Trev = Trev[::-1]
if S == T and S == Trev:
    pro = 1
    n = 1
    count = 1
    ans = 0
    while (10**10) > n:
        sub = 1 - 1 / n
        ans += sub * pro * count
        pro -= sub * pro
        n *= 2
        count += 1
    print(ans)
elif S == T:
    pro = 1
    n = 1
    count = 1
    ans = 0
    while (10**10) > n:
        if count % 2 == 1:
            sub = 1 - 1 / n
            ans += sub * pro * count
            pro -= sub * pro
        n *= 2
        count += 1
    print(ans)
elif S == Trev:
    pro = 1
    n = 1
    count = 1
    ans = 0
    while (10**10) > n:
        if count % 2 == 0:
            sub = 1 - 1 / n
            ans += sub * pro * count
            pro -= sub * pro
        n *= 2
        count += 1
    print(ans)
else:
    print(-1)
0