結果

問題 No.2871 Universal Serial Bus
ユーザー rogi52rogi52
提出日時 2024-09-06 22:27:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 54,596 KB
最終ジャッジ日時 2024-09-06 22:27:56
合計ジャッジ時間 1,913 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,700 KB
testcase_01 AC 38 ms
53,808 KB
testcase_02 AC 38 ms
54,000 KB
testcase_03 AC 37 ms
53,340 KB
testcase_04 AC 37 ms
52,700 KB
testcase_05 AC 37 ms
53,732 KB
testcase_06 AC 37 ms
52,524 KB
testcase_07 AC 38 ms
54,596 KB
testcase_08 AC 38 ms
53,136 KB
testcase_09 AC 38 ms
53,812 KB
testcase_10 AC 37 ms
52,840 KB
testcase_11 AC 37 ms
52,364 KB
testcase_12 AC 38 ms
53,468 KB
testcase_13 AC 39 ms
53,160 KB
testcase_14 AC 39 ms
53,200 KB
testcase_15 AC 39 ms
53,068 KB
testcase_16 AC 38 ms
53,332 KB
testcase_17 AC 38 ms
53,364 KB
testcase_18 AC 38 ms
53,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ok1, ok2 = True, True
for i in range(H):
    for j in range(W):
        ok1 &= S[i][j] != T[i][j]
        ok2 &= S[i][j] != T[H - 1 - i][W - 1 - j]

if ok1 and ok2:
    ans = 0
    for n in range(1, 100):
        ans += n * (pow(2, -(n-2)*(n-1)/2) - pow(2, -(n-1)*n/2))
    print(ans)
elif ok1 and not ok2:
    print(3.5317401904617327)
elif not ok1 and ok2:
    ans = 0
    for n in range(1, 100):
        ans += n * (pow(2, -n * (n-2)) - pow(2, -(n-1)*(n+1)))
    print(ans)
else:
    print(-1)
0