結果

問題 No.2871 Universal Serial Bus
ユーザー ShirotsumeShirotsume
提出日時 2024-09-06 21:40:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 920 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 58,540 KB
最終ジャッジ日時 2024-09-06 21:41:05
合計ジャッジ時間 1,830 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
56,340 KB
testcase_01 AC 47 ms
56,968 KB
testcase_02 AC 48 ms
57,172 KB
testcase_03 AC 45 ms
56,464 KB
testcase_04 AC 46 ms
56,100 KB
testcase_05 AC 47 ms
58,540 KB
testcase_06 AC 45 ms
56,728 KB
testcase_07 AC 45 ms
56,228 KB
testcase_08 AC 45 ms
56,300 KB
testcase_09 AC 45 ms
56,964 KB
testcase_10 AC 45 ms
56,064 KB
testcase_11 AC 48 ms
56,836 KB
testcase_12 AC 47 ms
56,428 KB
testcase_13 AC 46 ms
55,828 KB
testcase_14 AC 49 ms
57,224 KB
testcase_15 AC 49 ms
56,816 KB
testcase_16 AC 46 ms
57,596 KB
testcase_17 AC 48 ms
57,256 KB
testcase_18 AC 47 ms
58,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
def debug(*x):print('debug:',*x, file=sys.stderr)
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

h, w = mi()

s = [input() for _ in range(h)]
t = [input() for _ in range(h)]
t = [t[i].replace('#', '1') for i in range(h)]
t = [t[i].replace('.', '#') for i in range(h)]
t = [t[i].replace('1', '.') for i in range(h)]
cnt = 0
if s == t:
    cnt |= 1
if [s[i][::-1] for i in range(h)][::-1] == t:
    cnt |= 2
if cnt == 0:
    print(-1)
    exit()
ans = 0
p = 1
for i in range(1, 1000):
    if i % 2:
        if cnt % 2:
            ans += i * (1 - pow(2, -i+1)) * p
            p *= (pow(2, -i+1))
    else:
        if cnt // 2:
            ans += i * (1 - pow(2, -i+1)) * p
            p *= (pow(2, -i+1))

print(ans)
    
0