結果

問題 No.2209 Flip and Reverse
ユーザー MasKoaTSMasKoaTS
提出日時 2023-02-10 22:06:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 275 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 80,904 KB
最終ジャッジ日時 2024-07-07 16:21:11
合計ジャッジ時間 3,918 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
t = input()

ans = 10 ** 9
cnt = 0
for a, b in zip(s, t):
    cnt += (a != b)
if(cnt % 2 == 0):
  ans = cnt
cnt = 0
for a, b in zip(s[::-1], t):
    cnt += (a != b)
if(cnt % 2 == 1):
  ans = min(ans, cnt)
if(ans == 10 ** 9):
  exit(1)
print(ans)
0