結果

問題 No.2871 Universal Serial Bus
ユーザー ra5anchorra5anchor
提出日時 2024-09-06 21:54:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,312 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 83,048 KB
実行使用メモリ 76,348 KB
最終ジャッジ日時 2024-09-06 21:54:38
合計ジャッジ時間 2,630 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
76,160 KB
testcase_01 AC 90 ms
76,276 KB
testcase_02 AC 108 ms
76,048 KB
testcase_03 WA -
testcase_04 AC 85 ms
75,940 KB
testcase_05 AC 110 ms
76,232 KB
testcase_06 AC 90 ms
76,072 KB
testcase_07 AC 84 ms
76,140 KB
testcase_08 WA -
testcase_09 AC 89 ms
75,932 KB
testcase_10 WA -
testcase_11 AC 89 ms
75,944 KB
testcase_12 AC 86 ms
76,348 KB
testcase_13 WA -
testcase_14 AC 90 ms
76,240 KB
testcase_15 AC 109 ms
76,252 KB
testcase_16 AC 84 ms
75,892 KB
testcase_17 AC 109 ms
75,916 KB
testcase_18 AC 109 ms
76,132 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 = 0
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