結果

問題 No.2018 X-Y-X
ユーザー achapiachapi
提出日時 2022-07-22 22:08:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 651 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 100,836 KB
最終ジャッジ日時 2024-07-04 06:32:04
合計ジャッジ時間 3,963 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,128 KB
testcase_01 AC 32 ms
53,088 KB
testcase_02 AC 33 ms
52,520 KB
testcase_03 AC 33 ms
53,632 KB
testcase_04 WA -
testcase_05 AC 34 ms
52,740 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 105 ms
97,908 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 61 ms
72,716 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 61 ms
70,600 KB
testcase_29 AC 59 ms
75,692 KB
testcase_30 AC 89 ms
89,288 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=[*input()]
t=[*input()]
S=s[:]
T=t[:]
a=[]
ans=0
for i in range(n-2)[::2]:
    if s[i]==s[i+2]:
        if s[i+1]!=t[i+1]:
            s[i+1]=t[i+1]
            ans+=1
for i in range(1,n-2)[::2]:
    if s[i]==s[i+2]:
        if s[i+1]!=t[i+1]:
            s[i+1]=t[i+1]
            ans+=1
if s==t:a.append(ans)
ans=0
s=S[:]
t=T[:]
for i in range(1,n-2)[::2]:
    if s[i]==s[i+2]:
        if s[i+1]!=t[i+1]:
            s[i+1]=t[i+1]
            ans+=1
for i in range(n-2)[::2]:
    if s[i]==s[i+2]:
        if s[i+1]!=t[i+1]:
            s[i+1]=t[i+1]
            ans+=1
if s==t:a.append(ans)
if len(a)==0:print(-1)
else:print(min(a))
0