結果

問題 No.2209 Flip and Reverse
ユーザー tamatotamato
提出日時 2023-02-10 21:27:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 80,384 KB
最終ジャッジ日時 2024-07-07 15:37:56
合計ジャッジ時間 4,555 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    S = input().rstrip('\n')
    T = input().rstrip('\n')

    ans = 0
    for s, t in zip(S, T):
        if s != t:
            ans += 1
    if ans & 1:
        ans = 10 ** 9
    ans2 = 0
    for s, t in zip(S, T[::-1]):
        if s != t:
            ans2 += 1
    if ans2 & 1 == 0:
        ans2 = 10 ** 9
    print(min(ans, ans2))


if __name__ == '__main__':
    main()
0