結果

問題 No.2209 Flip and Reverse
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-02-10 22:05:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-07-07 16:20:57
合計ジャッジ時間 4,178 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = input()
T = input()

def solve(S,T,mod):
    count = 0
    for s,t in zip(S,T):
        if s != t:
            count += 1
    if count%2 == mod:
        return count
    else:
        return 10**10

ans = min(solve(S,T,0),solve(S[::-1],T,1))
print(ans)
0