結果

問題 No.2871 Universal Serial Bus
ユーザー みあえみあえ
提出日時 2024-09-09 23:49:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 978 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 386,160 KB
最終ジャッジ日時 2024-09-09 23:50:29
合計ジャッジ時間 33,410 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,485 ms
239,548 KB
testcase_01 AC 1,493 ms
238,044 KB
testcase_02 TLE -
testcase_03 WA -
testcase_04 AC 1,478 ms
236,208 KB
testcase_05 TLE -
testcase_06 AC 1,450 ms
238,508 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1,443 ms
237,848 KB
testcase_10 WA -
testcase_11 TLE -
testcase_12 AC 1,447 ms
236,452 KB
testcase_13 WA -
testcase_14 AC 1,457 ms
237,864 KB
testcase_15 TLE -
testcase_16 AC 1,442 ms
236,212 KB
testcase_17 TLE -
testcase_18 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(H, W, Ss, Ts):
    odd = all(S + T + 1 == 1 << W for S, T in zip(Ss, Ts))
    even = all(S + T + 1 == 1 << W for S, T in zip(Ss[::-1], Ts))

    E = []
    p = 1.0
    for i in range(1, 20202020):
        if i & 1:
            if odd:
                e = i * p * (1.0 - pow(2, -i + 1))
                E.append(e)
                p *= pow(2, -i + 1)
        else:
            if even:
                e = i * p * (1.0 - pow(2, -i + 1))
                E.append(e)
                p *= pow(2, -i + 1)

    ans = sum(E[::-1])

    return ans


def main():
    H, W = map(int, input().split())
    Ss = []
    for _ in range(H):
        line = input()
        line = line.replace(".", "0").replace("#", "1")
        Ss.append(int(line, 2))
    Ts = []
    for _ in range(H):
        line = input()
        line = line.replace(".", "0").replace("#", "1")
        Ts.append(int(line, 2))
    ans = solve(H, W, Ss, Ts)
    print(ans)


if __name__ == "__main__":
    main()
0