結果

問題 No.2871 Universal Serial Bus
ユーザー miya145592miya145592
提出日時 2024-09-06 22:02:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 1,454 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,708 KB
実行使用メモリ 54,068 KB
最終ジャッジ日時 2024-09-06 22:02:37
合計ジャッジ時間 1,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,344 KB
testcase_01 AC 40 ms
53,328 KB
testcase_02 AC 36 ms
52,596 KB
testcase_03 AC 36 ms
53,108 KB
testcase_04 AC 35 ms
52,980 KB
testcase_05 AC 36 ms
52,992 KB
testcase_06 AC 43 ms
53,032 KB
testcase_07 AC 36 ms
53,048 KB
testcase_08 AC 34 ms
53,316 KB
testcase_09 AC 33 ms
53,736 KB
testcase_10 AC 33 ms
53,628 KB
testcase_11 AC 33 ms
53,084 KB
testcase_12 AC 34 ms
52,652 KB
testcase_13 AC 33 ms
52,964 KB
testcase_14 AC 33 ms
53,152 KB
testcase_15 AC 35 ms
53,144 KB
testcase_16 AC 33 ms
53,156 KB
testcase_17 AC 34 ms
54,068 KB
testcase_18 AC 32 ms
53,072 KB
権限があれば一括ダウンロードができます

ソースコード

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):
        f = 1/(2**(i-1))
        if f<1:
            anspre = ans
        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