結果

問題 No.2871 Universal Serial Bus
ユーザー KudeKude
提出日時 2024-09-06 22:12:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 484 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 59,772 KB
最終ジャッジ日時 2024-09-06 22:12:02
合計ジャッジ時間 1,478 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
58,164 KB
testcase_01 AC 35 ms
58,460 KB
testcase_02 AC 35 ms
58,504 KB
testcase_03 AC 33 ms
54,144 KB
testcase_04 AC 35 ms
57,844 KB
testcase_05 AC 35 ms
57,924 KB
testcase_06 AC 35 ms
58,992 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
53,468 KB
testcase_11 WA -
testcase_12 AC 35 ms
58,132 KB
testcase_13 AC 33 ms
52,764 KB
testcase_14 AC 37 ms
58,480 KB
testcase_15 AC 36 ms
58,240 KB
testcase_16 AC 37 ms
59,320 KB
testcase_17 AC 37 ms
58,820 KB
testcase_18 AC 38 ms
59,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
s = [input() for _ in range(h)]
t = [input() for _ in range(h)]
ok1 = all(s[i][j] != t[i][j] for i in range(h) for j in range(w))
for i in range(h):
    s.reverse()
s.reverse()
ok2 = all(s[i][j] != t[i][j] for i in range(h) for j in range(w))
if not ok1 and not ok2:
    print(-1)
    exit()
ans = 0.0
p = 1.0
i = 0
while p:
    ans += p
    if ok1:
        for _ in range(i):
            p /= 2
    i += 1
    ok1, ok2 = ok2, ok1
print(f'{ans:.16f}')
0