結果

問題 No.2871 Universal Serial Bus
ユーザー KudeKude
提出日時 2024-09-06 22:08:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 499 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 60,188 KB
最終ジャッジ日時 2024-09-06 22:08:58
合計ジャッジ時間 1,726 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
57,936 KB
testcase_01 AC 36 ms
57,988 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 36 ms
58,564 KB
testcase_05 WA -
testcase_06 AC 37 ms
59,188 KB
testcase_07 AC 37 ms
58,060 KB
testcase_08 WA -
testcase_09 AC 42 ms
59,416 KB
testcase_10 WA -
testcase_11 AC 36 ms
59,308 KB
testcase_12 AC 38 ms
58,320 KB
testcase_13 WA -
testcase_14 AC 36 ms
57,712 KB
testcase_15 WA -
testcase_16 AC 38 ms
59,028 KB
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
s = [input() for _ in range(h)]
t = [input() for _ in range(h)]
ok = all(s[i][j] != t[i][j] for i in range(h) for j in range(w))
if ok:
    ans = 0.0
    p = 1.0
    ans += p
    d = 2
    while p:
        ans += 2 * p
        for _ in range(d):
            p /= 2
        d += 2
    print(f'{ans:.16f}')
else:
    ans = 0.0
    p = 1.0
    d = 1
    while p:
        ans += 2 * p
        for _ in range(d):
            p /= 2
        d += 2
    print(f'{ans:.16f}')
0