結果

問題 No.2871 Universal Serial Bus
ユーザー hiro1729hiro1729
提出日時 2024-09-06 21:44:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 545 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 66,884 KB
最終ジャッジ日時 2024-09-06 21:45:05
合計ジャッジ時間 1,861 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,784 KB
testcase_01 AC 38 ms
52,324 KB
testcase_02 WA -
testcase_03 AC 38 ms
52,724 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 39 ms
53,676 KB
testcase_07 WA -
testcase_08 AC 38 ms
52,200 KB
testcase_09 AC 39 ms
53,252 KB
testcase_10 AC 38 ms
53,416 KB
testcase_11 AC 37 ms
53,068 KB
testcase_12 RE -
testcase_13 AC 39 ms
53,632 KB
testcase_14 AC 39 ms
54,328 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 39 ms
52,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
S = [input() for _ in range(H)]
T = [input() for _ in range(H)]
ok1 = True
for i in range(H):
	for j in range(W):
		if S[i][j] == T[i][j]:
			ok1 = False
ok2 = True
for i in range(H):
	for j in range(W):
		if S[H - 1 - i][W - 1 - i] == T[i][j]:
			ok2 = False
if (not ok1) and (not ok2):
	print(-1)
	exit()
ans = 0
now_prob = 1
for i in range(1, 200):
	if not((i % 2 == 1 and ok1) or (i % 2 == 0 and ok2)):
		continue
	prob = 1 - (2 ** (1 - i))
	ans += now_prob * prob * i
	now_prob -= now_prob * prob
print(ans)
0