結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,326 ms
10,880 KB
testcase_01 AC 1,329 ms
10,880 KB
testcase_02 AC 1,303 ms
10,880 KB
testcase_03 WA -
testcase_04 AC 1,324 ms
10,752 KB
testcase_05 AC 1,334 ms
10,880 KB
testcase_06 AC 1,273 ms
10,752 KB
testcase_07 AC 1,298 ms
10,880 KB
testcase_08 WA -
testcase_09 AC 1,331 ms
10,752 KB
testcase_10 WA -
testcase_11 AC 1,315 ms
10,752 KB
testcase_12 AC 1,329 ms
10,752 KB
testcase_13 WA -
testcase_14 AC 1,316 ms
10,752 KB
testcase_15 AC 1,290 ms
10,880 KB
testcase_16 AC 1,287 ms
10,752 KB
testcase_17 AC 1,294 ms
10,880 KB
testcase_18 AC 1,279 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, 2020200):
    if k % 2:
        prob = (1.0 - sp) * a * (1.0 - coef)
    else:
        prob = (1.0 - sp) * b * (1.0 - coef)
    ans += prob * k
    sp += prob
    
    coef /= 2.0

print(ans)
0