結果

問題 No.2871 Universal Serial Bus
ユーザー miya145592miya145592
提出日時 2024-09-06 22:01:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,434 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,696 KB
実行使用メモリ 54,668 KB
最終ジャッジ日時 2024-09-06 22:01:40
合計ジャッジ時間 1,943 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,140 KB
testcase_01 AC 34 ms
54,212 KB
testcase_02 WA -
testcase_03 AC 33 ms
53,024 KB
testcase_04 AC 35 ms
53,428 KB
testcase_05 WA -
testcase_06 AC 34 ms
53,408 KB
testcase_07 AC 33 ms
53,344 KB
testcase_08 AC 32 ms
54,344 KB
testcase_09 AC 35 ms
54,064 KB
testcase_10 AC 36 ms
53,472 KB
testcase_11 AC 34 ms
53,012 KB
testcase_12 AC 34 ms
52,720 KB
testcase_13 AC 36 ms
53,328 KB
testcase_14 AC 36 ms
53,696 KB
testcase_15 WA -
testcase_16 AC 39 ms
53,200 KB
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
H, W = map(int, input().split())
S = [input().strip() for _ in range(H)]
T = [input().strip() for _ in range(H)]
Srev = [["" for _ in range(W)] for _ in range(H)]
for i in range(H):
    for j in range(W):
        Srev[H-1-i][W-1-j] = S[i][j]
flag = True
for i in range(H):
    for j in range(W):
        if S[i][j]==T[i][j]:
            flag = False
            break
    if flag==False:
        break
flagrev = True
for i in range(H):
    for j in range(W):
        if Srev[i][j]==T[i][j]:
            flagrev = False
            break
    if flagrev==False:
        break
if flag and flagrev:
    ans = 0
    anspre = -1
    i = 1
    fail = 1
    while ans-anspre>10**(-7):
        anspre = ans
        f = 1/(2**(i-1))
        ans += i*(1-f)*fail
        fail *= f
        i+=1
    print(ans)
elif flag:
    ans = 0
    anspre = -1
    i = 1
    fail = 1
    while ans-anspre>10**(-7):
        if i%2==1:
            f = 1/(2**(i-1))
        else:
            f = 1
        if f<1:
            anspre = ans
        ans += i*(1-f)*fail
        fail *= f
        i+=1
    print(ans)
elif flagrev:
    ans = 0
    anspre = -1
    i = 1
    fail = 1
    while ans-anspre>10**(-7):
        if i%2==0:
            f = 1/(2**(i-1))
        else:
            f = 1
        if f<1:
            anspre = ans
        ans += i*(1-f)*fail
        fail *= f
        i+=1
    print(ans)
else:
    print(-1)
0