結果

問題 No.2871 Universal Serial Bus
ユーザー detteiuudetteiuu
提出日時 2024-09-06 21:40:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 796 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 54,600 KB
最終ジャッジ日時 2024-09-06 21:40:26
合計ジャッジ時間 1,641 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,532 KB
testcase_01 AC 40 ms
53,204 KB
testcase_02 AC 39 ms
53,160 KB
testcase_03 AC 38 ms
53,916 KB
testcase_04 AC 38 ms
53,012 KB
testcase_05 AC 39 ms
54,416 KB
testcase_06 AC 38 ms
53,624 KB
testcase_07 AC 38 ms
52,652 KB
testcase_08 AC 38 ms
53,376 KB
testcase_09 AC 38 ms
52,956 KB
testcase_10 AC 39 ms
54,068 KB
testcase_11 AC 38 ms
52,952 KB
testcase_12 AC 38 ms
53,152 KB
testcase_13 AC 39 ms
53,508 KB
testcase_14 AC 40 ms
53,692 KB
testcase_15 AC 39 ms
53,336 KB
testcase_16 AC 41 ms
54,600 KB
testcase_17 AC 40 ms
53,684 KB
testcase_18 AC 39 ms
54,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

first, second = False, False
R = [t[:] for t in T[:]]
for i in range(H):
    for j in range(W):
        if R[i][j] == "#":
            R[i][j] = "."
        else:
            R[i][j] = "#"
if S == R:
    first = True
R = [[""]*W for _ in range(H)]
for i in range(H):
    for j in range(W):
        if T[i][j] == "#":
            s = "."
        else:
            s = "#"
        R[-(i+1)][-(j+1)] = s
if S == R:
    second = True

if not first and not second:
    exit(print(-1))

ans = 0
P = 1
for i in range(100):
    p = P*((2**i-1)/2**i)
    if i%2 == 0 and first:
        ans += (i+1)*p
        P -= p
    elif i%2 == 1 and second:
        ans += (i+1)*p
        P -= p

print(ans)
0