結果

問題 No.2871 Universal Serial Bus
ユーザー kainadekainade
提出日時 2024-09-08 12:12:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 591 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 63,408 KB
最終ジャッジ日時 2024-09-08 12:12:55
合計ジャッジ時間 2,524 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 52 ms
62,068 KB
testcase_03 AC 44 ms
54,064 KB
testcase_04 WA -
testcase_05 AC 51 ms
62,628 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 43 ms
54,016 KB
testcase_09 WA -
testcase_10 AC 44 ms
54,724 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 43 ms
55,320 KB
testcase_14 WA -
testcase_15 AC 51 ms
63,408 KB
testcase_16 WA -
testcase_17 AC 52 ms
62,556 KB
testcase_18 AC 52 ms
63,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
	import sys
	input = lambda : sys.stdin.readline().rstrip()
	MI = lambda : map(int, input().split())
	INF = 1<<60
	
	H,W = MI()
	ma = [input() for i in range(H)]
	fe = [input() for i in range(H)]
	
	def check(T, S):
		for i in range(H):
			for j in range(W):
				if T[i][j]==S[i][j]: return False
		return True
		
	fwd=check(ma, fe)
	rev=check([row[::-1] for row in ma][::-1], fe)
	
	if fwd==rev==False:
		return print(-1)
		
	ans=0	
	fail=1
	for i in range(1,10000):
		ans+=fail*(1-(1/2)**(i-1))*i
		fail*=(1/2)**(i-1)
	print(round(ans,9))
	
	
	
from collections import *
main()
0