結果

問題 No.2018 X-Y-X
ユーザー Kiri8128Kiri8128
提出日時 2022-05-04 01:42:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 79,608 KB
最終ジャッジ日時 2024-06-06 01:28:27
合計ジャッジ時間 4,030 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,560 KB
testcase_01 AC 35 ms
52,460 KB
testcase_02 AC 35 ms
52,068 KB
testcase_03 AC 35 ms
52,312 KB
testcase_04 AC 35 ms
53,252 KB
testcase_05 AC 36 ms
52,620 KB
testcase_06 AC 67 ms
79,376 KB
testcase_07 AC 68 ms
79,232 KB
testcase_08 AC 64 ms
79,396 KB
testcase_09 AC 65 ms
79,608 KB
testcase_10 AC 57 ms
73,044 KB
testcase_11 AC 59 ms
75,240 KB
testcase_12 AC 61 ms
76,140 KB
testcase_13 AC 64 ms
79,076 KB
testcase_14 AC 58 ms
76,332 KB
testcase_15 AC 70 ms
79,204 KB
testcase_16 AC 61 ms
76,732 KB
testcase_17 AC 66 ms
79,120 KB
testcase_18 AC 58 ms
72,568 KB
testcase_19 AC 73 ms
79,228 KB
testcase_20 AC 70 ms
79,452 KB
testcase_21 AC 58 ms
77,360 KB
testcase_22 AC 65 ms
78,804 KB
testcase_23 AC 42 ms
62,736 KB
testcase_24 AC 67 ms
79,284 KB
testcase_25 AC 69 ms
79,360 KB
testcase_26 AC 66 ms
78,820 KB
testcase_27 AC 57 ms
72,100 KB
testcase_28 AC 41 ms
60,660 KB
testcase_29 AC 45 ms
65,172 KB
testcase_30 AC 45 ms
67,932 KB
testcase_31 AC 58 ms
74,228 KB
testcase_32 AC 67 ms
78,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = [ord(a) - 65 for a in input()]
T = [ord(a) - 65 for a in input()]
if S[0] != T[0] or S[-1] != T[-1]:
    print(-1)
    exit()

before, flip, ans = 0, 0, 0
for i in range(N - 1):
    xor = S[i] ^ T[i]
    next_xor = S[i+1] ^ T[i+1]
    r_before = before ^ xor ^ (flip & 1) ^ (S[i-1] ^ S[i+1]) if flip else 0
    next_flip = max(0, flip + r_before - 1)
    if (next_flip ^ next_xor) % 2:
        next_flip += 1

    before = r_before ^ 1 if flip and next_flip else 0
    flip = next_flip
    ans += flip

print(-1 if flip else ans)
0