結果

問題 No.2018 X-Y-X
ユーザー shotoyooshotoyoo
提出日時 2023-08-04 00:04:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 1,194 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 102,656 KB
最終ジャッジ日時 2024-10-13 21:06:05
合計ジャッジ時間 4,836 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,364 KB
testcase_01 AC 38 ms
54,384 KB
testcase_02 AC 39 ms
55,044 KB
testcase_03 AC 39 ms
54,520 KB
testcase_04 AC 38 ms
56,112 KB
testcase_05 AC 38 ms
55,588 KB
testcase_06 AC 91 ms
83,356 KB
testcase_07 AC 91 ms
84,600 KB
testcase_08 AC 99 ms
95,468 KB
testcase_09 AC 99 ms
95,404 KB
testcase_10 AC 90 ms
93,916 KB
testcase_11 AC 97 ms
95,232 KB
testcase_12 AC 101 ms
95,616 KB
testcase_13 AC 96 ms
83,920 KB
testcase_14 AC 105 ms
86,400 KB
testcase_15 AC 104 ms
88,948 KB
testcase_16 AC 87 ms
81,920 KB
testcase_17 AC 98 ms
86,400 KB
testcase_18 AC 92 ms
84,224 KB
testcase_19 AC 81 ms
83,004 KB
testcase_20 AC 86 ms
83,072 KB
testcase_21 AC 92 ms
82,176 KB
testcase_22 AC 89 ms
82,304 KB
testcase_23 AC 49 ms
65,024 KB
testcase_24 AC 113 ms
101,248 KB
testcase_25 AC 112 ms
93,580 KB
testcase_26 AC 108 ms
102,656 KB
testcase_27 AC 72 ms
80,256 KB
testcase_28 AC 48 ms
62,976 KB
testcase_29 AC 77 ms
79,616 KB
testcase_30 AC 52 ms
70,912 KB
testcase_31 AC 105 ms
86,912 KB
testcase_32 AC 107 ms
86,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, random
input = lambda : sys.stdin.readline().rstrip()


write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); INF=10**18
LI = lambda : list(map(int, input().split())); II=lambda : int(input()); SI=lambda : [ord(c)-ord("a") for c in input()]
def debug(_l_):
    for s in _l_.split():
        print(f"{s}={eval(s)}", end=" ")
    print()
def dlist(*l, fill=0):
    if len(l)==1:
        return [fill]*l[0]
    ll = l[1:]
    return [dlist(*ll, fill=fill) for _ in range(l[0])]

n = int(input())
s = [c=="B" for c in input()]
t = [c=="B" for c in input()]
if s[0]==t[0] and s[n-1]==t[n-1]:
    s = [s[i]^s[i+1] for i in range(n-1)]
    t = [t[i]^t[i+1] for i in range(n-1)]
    n -= 1
    for i in range(1,n,2):
        s[i] ^= 1
        t[i] ^= 1
    if sum(s)!=sum(t):
        ans = -1
    else:
        ans = 0
        sind = [i for i in range(n) if s[i]]
        tind = [i for i in range(n) if t[i]]
        for i in range(len(sind)):
            ans += abs(sind[i]-tind[i])
else:
    ans = -1
if ans==-1:
    print(-1)
else:
    print(ans)
0