結果

問題 No.2871 Universal Serial Bus
ユーザー titiatitia
提出日時 2024-09-07 01:24:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 691 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-07 01:24:40
合計ジャッジ時間 3,389 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
10,752 KB
testcase_01 AC 94 ms
11,008 KB
testcase_02 AC 140 ms
10,880 KB
testcase_03 AC 51 ms
10,880 KB
testcase_04 AC 99 ms
10,880 KB
testcase_05 AC 139 ms
10,880 KB
testcase_06 AC 94 ms
10,752 KB
testcase_07 AC 92 ms
10,880 KB
testcase_08 AC 51 ms
10,752 KB
testcase_09 AC 97 ms
10,880 KB
testcase_10 AC 50 ms
10,880 KB
testcase_11 AC 98 ms
10,880 KB
testcase_12 AC 94 ms
10,880 KB
testcase_13 AC 52 ms
10,880 KB
testcase_14 AC 95 ms
10,880 KB
testcase_15 AC 141 ms
10,880 KB
testcase_16 AC 93 ms
10,752 KB
testcase_17 AC 136 ms
10,880 KB
testcase_18 AC 136 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H,W=map(int,input().split())

S=[input().strip() for i in range(H)]
T=[input().strip() for i in range(H)]

SINV=[]
for i in range(H-1,-1,-1):
    SINV.append(S[i][::-1])

flag1=1
for i in range(H):
    for j in range(W):
        if S[i][j]==T[i][j]:
            flag1=0

flag2=1
for i in range(H):
    for j in range(W):
        if SINV[i][j]==T[i][j]:
            flag2=0

ANS=0
c=1

for i in range(1,100000):
    if i%2==1 and flag1==1:
        ANS+=i*c*(1-pow(2,-(i-1)))
        c-=c*(1-pow(2,-(i-1)))

    if i%2==0 and flag2==1:
        ANS+=i*c*(1-pow(2,-(i-1)))
        c-=c*(1-pow(2,-(i-1)))

if ANS==0:
    print(-1)
else:
    print(ANS)
    
0