結果

問題 No.2018 X-Y-X
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-07-23 10:23:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 124,160 KB
最終ジャッジ日時 2024-07-04 21:10:15
合計ジャッジ時間 4,096 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 100 ms
106,112 KB
testcase_07 AC 101 ms
107,264 KB
testcase_08 AC 108 ms
118,144 KB
testcase_09 AC 108 ms
118,272 KB
testcase_10 AC 101 ms
103,424 KB
testcase_11 AC 98 ms
96,768 KB
testcase_12 AC 99 ms
96,384 KB
testcase_13 AC 100 ms
107,008 KB
testcase_14 AC 99 ms
99,456 KB
testcase_15 AC 107 ms
111,616 KB
testcase_16 AC 88 ms
96,256 KB
testcase_17 AC 99 ms
102,400 KB
testcase_18 AC 87 ms
89,344 KB
testcase_19 AC 93 ms
105,600 KB
testcase_20 AC 92 ms
105,600 KB
testcase_21 AC 97 ms
102,400 KB
testcase_22 AC 96 ms
102,144 KB
testcase_23 AC 40 ms
52,224 KB
testcase_24 AC 120 ms
124,160 KB
testcase_25 AC 113 ms
116,352 KB
testcase_26 AC 119 ms
102,016 KB
testcase_27 AC 73 ms
81,152 KB
testcase_28 AC 40 ms
51,968 KB
testcase_29 AC 68 ms
77,056 KB
testcase_30 AC 41 ms
53,504 KB
testcase_31 AC 91 ms
93,312 KB
testcase_32 AC 99 ms
99,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = input()
T = input()
if S[0] != T[0] or S[-1] != T[-1]:
    print(-1)
    exit()
S = [ord(s)-ord("A") for s in S]
T = [ord(t)-ord("A") for t in T]

S2 = []
T2 = []

for i in range(n-1):
    S2.append(S[i]^S[i+1])
    T2.append(T[i]^T[i+1])


for i in range(1,n-1,2):
    S2[i] ^= 1
    T2[i] ^= 1

if sum(S2) != sum(T2):
    print(-1)
    exit()

Sone = []
Tone = []
for i in range(n-1):
    if S2[i]:
        Sone.append(i)
    if T2[i]:
        Tone.append(i)

ans = 0
for s,t in zip(Sone,Tone):
    ans += abs(s-t)
print(ans)
0