結果

問題 No.2209 Flip and Reverse
ユーザー flygon
提出日時 2023-02-10 21:23:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 195 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 80,856 KB
最終ジャッジ日時 2024-07-07 15:31:26
合計ジャッジ時間 3,876 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 17 WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
t = input()
ans = 0
for i in range(n):
  if s[i] != t[i]:
    ans += 1
ans2 = 0
s = s[::-1]
for i in range(n):
  if s[i] != t[i]:
    ans2 += 1
 
print(min(ans,ans2))
0