結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,732 KB
testcase_01 AC 36 ms
53,612 KB
testcase_02 AC 35 ms
53,068 KB
testcase_03 WA -
testcase_04 AC 36 ms
53,456 KB
testcase_05 AC 35 ms
53,392 KB
testcase_06 AC 40 ms
53,824 KB
testcase_07 AC 37 ms
54,144 KB
testcase_08 WA -
testcase_09 AC 34 ms
52,936 KB
testcase_10 WA -
testcase_11 AC 37 ms
53,668 KB
testcase_12 AC 35 ms
53,936 KB
testcase_13 WA -
testcase_14 AC 37 ms
53,876 KB
testcase_15 AC 36 ms
53,540 KB
testcase_16 AC 37 ms
54,284 KB
testcase_17 AC 36 ms
53,472 KB
testcase_18 AC 36 ms
53,612 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)

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