結果

問題 No.2871 Universal Serial Bus
ユーザー ra5anchorra5anchor
提出日時 2024-09-06 21:56:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 1,313 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,836 KB
実行使用メモリ 76,312 KB
最終ジャッジ日時 2024-09-06 21:57:47
合計ジャッジ時間 2,682 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
76,132 KB
testcase_01 AC 89 ms
75,808 KB
testcase_02 AC 110 ms
76,168 KB
testcase_03 AC 38 ms
53,828 KB
testcase_04 AC 86 ms
75,892 KB
testcase_05 AC 108 ms
75,988 KB
testcase_06 AC 88 ms
76,004 KB
testcase_07 AC 83 ms
76,120 KB
testcase_08 AC 38 ms
53,540 KB
testcase_09 AC 90 ms
76,312 KB
testcase_10 AC 39 ms
53,020 KB
testcase_11 AC 90 ms
76,044 KB
testcase_12 AC 85 ms
75,784 KB
testcase_13 AC 39 ms
54,460 KB
testcase_14 AC 89 ms
76,088 KB
testcase_15 AC 108 ms
76,020 KB
testcase_16 AC 84 ms
75,940 KB
testcase_17 AC 110 ms
76,124 KB
testcase_18 AC 109 ms
76,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
S = [list(input().rstrip()) for _ in range(H)]
T = [list(input().rstrip()) for _ in range(H)]

for i in range(H):
    S[i] = [list(x) for x in S[i]]
    T[i] = [list(x) for x in T[i]]

def judge(S, T):
    for i in range(H):
        for j in range(W):
            if S[i][j] == T[i][j]:
                return False
    return True

ok1 = judge(S, T)

Sr = [list(x)[::-1] for x in zip(*S)]
Srr = [list(x)[::-1] for x in zip(*Sr)]

ok2 = judge(Srr, T)

# print(ok1, ok2)


if ok1 == True and ok2 == True:
    e = 0
    rem = 1
    for i in range(10**6):
        p = rem * (1 - 2 ** (-i))
        e += p * (i+1)
        rem -= p
        if e > 0 and e < 10**(-7):
            break
elif ok1 == False and ok2 == False:
    e = -1
elif ok1 == True and ok2 == False:
    e = 0
    rem = 1
    for i in range(10**6):
        if i % 2 == 0:
            p = rem * (1 - 2 ** (-i))
        else:
            p = 0
        e += p * (i+1)
        rem -= p
        if e > 0 and e < 10**(-7):
            break
elif ok1 == False and ok2 == True:
    e = 0
    rem = 1
    for i in range(10**6):
        if i % 2 == 1:
            p = rem * (1 - 2 ** (-i))
        else:
            p = 0
        e += p * (i+1)
        rem -= p
        if e > 0 and e < 10**(-7):
            break
print(e)
    
0