結果

問題 No.2018 X-Y-X
ユーザー とりゐとりゐ
提出日時 2022-08-08 15:52:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 89,984 KB
最終ジャッジ日時 2024-09-19 01:48:58
合計ジャッジ時間 3,901 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,584 KB
testcase_01 AC 34 ms
52,352 KB
testcase_02 AC 34 ms
51,584 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 33 ms
51,456 KB
testcase_05 AC 33 ms
51,584 KB
testcase_06 AC 61 ms
76,800 KB
testcase_07 AC 59 ms
77,184 KB
testcase_08 AC 67 ms
84,096 KB
testcase_09 AC 64 ms
83,840 KB
testcase_10 AC 63 ms
86,144 KB
testcase_11 AC 68 ms
87,040 KB
testcase_12 AC 69 ms
87,296 KB
testcase_13 AC 61 ms
77,312 KB
testcase_14 AC 66 ms
79,744 KB
testcase_15 AC 68 ms
80,640 KB
testcase_16 AC 57 ms
74,240 KB
testcase_17 AC 66 ms
78,848 KB
testcase_18 AC 64 ms
78,080 KB
testcase_19 AC 46 ms
73,088 KB
testcase_20 AC 69 ms
85,376 KB
testcase_21 AC 59 ms
76,416 KB
testcase_22 AC 61 ms
75,904 KB
testcase_23 AC 33 ms
52,352 KB
testcase_24 AC 76 ms
88,392 KB
testcase_25 AC 76 ms
84,352 KB
testcase_26 AC 80 ms
89,984 KB
testcase_27 AC 45 ms
65,536 KB
testcase_28 AC 38 ms
51,840 KB
testcase_29 AC 53 ms
68,992 KB
testcase_30 AC 39 ms
53,120 KB
testcase_31 AC 71 ms
79,360 KB
testcase_32 AC 73 ms
79,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=input()
t=input()
if s[0]!=t[0] or s[-1]!=t[-1]:
  print(-1)
  exit()

a=[]
b=[]
for i in range(n-1):
  if (s[i]!=s[i+1])^(i%2):
    a.append(i)
  if (t[i]!=t[i+1])^(i%2):
    b.append(i)

if len(a)!=len(b):
  print(-1)
  exit()

ans=0
for i in range(len(a)):
  ans+=abs(a[i]-b[i])

print(ans)
0