結果

問題 No.2871 Universal Serial Bus
ユーザー pitPpitP
提出日時 2024-09-06 21:42:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 635 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-06 21:42:18
合計ジャッジ時間 2,767 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
10,752 KB
testcase_01 AC 100 ms
10,752 KB
testcase_02 AC 98 ms
10,880 KB
testcase_03 WA -
testcase_04 AC 103 ms
10,752 KB
testcase_05 AC 98 ms
10,752 KB
testcase_06 AC 99 ms
10,752 KB
testcase_07 AC 97 ms
10,880 KB
testcase_08 WA -
testcase_09 AC 101 ms
10,752 KB
testcase_10 WA -
testcase_11 AC 96 ms
10,880 KB
testcase_12 AC 101 ms
10,880 KB
testcase_13 WA -
testcase_14 AC 100 ms
10,752 KB
testcase_15 AC 96 ms
10,880 KB
testcase_16 AC 99 ms
11,008 KB
testcase_17 AC 97 ms
10,752 KB
testcase_18 AC 100 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

S = [[1 if S[i][j] == '#' else 0 for j in range(W)] for i in range(H)]
T = [[1 if T[i][j] == '#' else 0 for j in range(W)] for i in range(H)]

a, b = 1, 1
for i in range(H):
    for j in range(W):
        a &= (S[i][j] + T[i][j] == 1)
        b &= (S[H - 1 - i][W - 1 - j] + T[i][j] == 1)

ans = 0.0
sp = 0.0
coef = 1.0

for k in range(1, 101010):
    if k % 2:
        prob = (1.0 - sp) * a * (1 - coef)
    else:
        prob = (1.0 - sp) * b * (1 - coef)
    ans += prob * k
    sp += prob
    
    coef /= 2.0

print(ans)
0