結果

問題 No.2871 Universal Serial Bus
ユーザー hiro1729hiro1729
提出日時 2024-09-06 21:46:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 545 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 54,716 KB
最終ジャッジ日時 2024-09-06 21:46:49
合計ジャッジ時間 1,690 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,092 KB
testcase_01 AC 39 ms
52,724 KB
testcase_02 AC 39 ms
52,756 KB
testcase_03 AC 39 ms
52,864 KB
testcase_04 AC 39 ms
52,600 KB
testcase_05 AC 39 ms
53,116 KB
testcase_06 AC 38 ms
52,528 KB
testcase_07 AC 38 ms
52,944 KB
testcase_08 AC 38 ms
53,196 KB
testcase_09 AC 39 ms
52,804 KB
testcase_10 AC 38 ms
53,700 KB
testcase_11 AC 38 ms
53,712 KB
testcase_12 AC 39 ms
52,912 KB
testcase_13 AC 39 ms
53,412 KB
testcase_14 AC 40 ms
53,456 KB
testcase_15 AC 39 ms
53,696 KB
testcase_16 AC 40 ms
54,716 KB
testcase_17 AC 39 ms
54,060 KB
testcase_18 AC 39 ms
53,484 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 - j] == 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