結果

問題 No.2871 Universal Serial Bus
ユーザー ShirotsumeShirotsume
提出日時 2024-09-06 21:40:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 882 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 58,484 KB
最終ジャッジ日時 2024-09-06 21:40:27
合計ジャッジ時間 1,862 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
57,028 KB
testcase_01 AC 46 ms
56,960 KB
testcase_02 AC 47 ms
58,484 KB
testcase_03 WA -
testcase_04 AC 46 ms
56,864 KB
testcase_05 AC 48 ms
58,128 KB
testcase_06 AC 46 ms
57,116 KB
testcase_07 AC 46 ms
57,584 KB
testcase_08 WA -
testcase_09 AC 47 ms
56,724 KB
testcase_10 WA -
testcase_11 AC 46 ms
57,012 KB
testcase_12 AC 47 ms
56,348 KB
testcase_13 WA -
testcase_14 AC 47 ms
57,384 KB
testcase_15 AC 47 ms
57,640 KB
testcase_16 AC 46 ms
56,160 KB
testcase_17 AC 48 ms
57,400 KB
testcase_18 AC 47 ms
58,444 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
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