結果

問題 No.2871 Universal Serial Bus
ユーザー hiro1729hiro1729
提出日時 2024-09-06 21:40:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 498 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 65,816 KB
最終ジャッジ日時 2024-09-06 21:41:03
合計ジャッジ時間 1,829 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,120 KB
testcase_01 AC 40 ms
53,408 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 40 ms
53,128 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 39 ms
53,916 KB
testcase_10 WA -
testcase_11 AC 37 ms
53,396 KB
testcase_12 RE -
testcase_13 WA -
testcase_14 AC 40 ms
53,952 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 39 ms
53,780 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
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