結果

問題 No.2871 Universal Serial Bus
ユーザー みあえみあえ
提出日時 2024-09-09 23:44:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 898 bytes
コンパイル時間 574 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 75,792 KB
最終ジャッジ日時 2024-09-09 23:44:47
合計ジャッジ時間 5,168 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
63,600 KB
testcase_01 AC 148 ms
62,076 KB
testcase_02 AC 241 ms
64,788 KB
testcase_03 WA -
testcase_04 AC 151 ms
75,792 KB
testcase_05 AC 243 ms
63,232 KB
testcase_06 AC 154 ms
61,696 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 150 ms
61,952 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 153 ms
75,564 KB
testcase_13 WA -
testcase_14 AC 149 ms
62,080 KB
testcase_15 AC 250 ms
63,232 KB
testcase_16 AC 155 ms
75,636 KB
testcase_17 AC 243 ms
63,104 KB
testcase_18 AC 244 ms
63,488 KB
権限があれば一括ダウンロードができます

ソースコード

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 = 0.0
    p = 1.0
    for i in range(1, 2020202):
        if i & 1:
            if odd:
                e += i * p * (1.0 - pow(2, -i + 1))
                p *= pow(2, -i + 1)
        else:
            if even:
                e += i * p * (1.0 - pow(2, -i + 1))
                p *= pow(2, -i + 1)

    return e


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