結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,752 KB
testcase_01 AC 37 ms
52,592 KB
testcase_02 WA -
testcase_03 AC 38 ms
53,484 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 37 ms
52,396 KB
testcase_07 WA -
testcase_08 AC 39 ms
53,080 KB
testcase_09 AC 37 ms
52,580 KB
testcase_10 AC 37 ms
52,956 KB
testcase_11 AC 38 ms
52,756 KB
testcase_12 RE -
testcase_13 AC 40 ms
54,008 KB
testcase_14 AC 39 ms
53,904 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 40 ms
53,032 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