結果

問題 No.2871 Universal Serial Bus
ユーザー 寝癖寝癖
提出日時 2024-08-24 13:21:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 778 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 55,400 KB
最終ジャッジ日時 2024-08-24 13:21:50
合計ジャッジ時間 2,146 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,596 KB
testcase_01 AC 36 ms
53,128 KB
testcase_02 AC 34 ms
53,360 KB
testcase_03 AC 34 ms
53,036 KB
testcase_04 WA -
testcase_05 AC 37 ms
53,032 KB
testcase_06 AC 36 ms
53,676 KB
testcase_07 WA -
testcase_08 AC 35 ms
53,804 KB
testcase_09 AC 34 ms
52,944 KB
testcase_10 AC 33 ms
52,368 KB
testcase_11 AC 36 ms
54,556 KB
testcase_12 WA -
testcase_13 AC 50 ms
52,196 KB
testcase_14 AC 32 ms
54,072 KB
testcase_15 AC 35 ms
53,420 KB
testcase_16 WA -
testcase_17 AC 35 ms
53,204 KB
testcase_18 AC 33 ms
55,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
S = [input() for _ in range(H)]
T = [input() for _ in range(H)]

def flip(S):
    res = [''] * H
    for i in range(H):
        for j in range(W):
            if S[i][j] == '.':
                res[i] += '#'
            else:
                res[i] += '.'
    return res

def rotate(S):
    S.reverse()
    S = [s[::-1] for s in S]
    return S

S = flip(S)

if S != T and rotate(S) != T:
    print(-1)
    exit()

ans = 0.0
M = 20

# i回目の成功確率
p = [0.0] * M

# 成功するまでにちょうどn回かかる確率
q = [0.0] * M

for i in range(1, M):
    if S == T:
        p[i] = 1.0 - 2.0**(1-i)
        q[i] = p[i]
        for j in range(1, i):
            q[i] *= 1.0 - p[j]
        ans += i * q[i]
    S = rotate(S)
print(ans)
0