結果

問題 No.2209 Flip and Reverse
ユーザー katonyonkokatonyonko
提出日時 2023-02-10 21:28:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 714 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 93,840 KB
最終ジャッジ日時 2024-07-07 15:39:33
合計ジャッジ時間 4,595 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,456 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 36 ms
51,584 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 35 ms
52,224 KB
testcase_06 AC 36 ms
51,456 KB
testcase_07 AC 37 ms
51,456 KB
testcase_08 AC 82 ms
93,544 KB
testcase_09 AC 35 ms
52,224 KB
testcase_10 AC 35 ms
51,584 KB
testcase_11 AC 34 ms
51,712 KB
testcase_12 AC 35 ms
51,584 KB
testcase_13 AC 36 ms
51,712 KB
testcase_14 AC 100 ms
93,748 KB
testcase_15 AC 115 ms
93,496 KB
testcase_16 AC 102 ms
93,412 KB
testcase_17 AC 99 ms
93,672 KB
testcase_18 AC 95 ms
93,240 KB
testcase_19 AC 99 ms
93,664 KB
testcase_20 AC 96 ms
93,240 KB
testcase_21 AC 96 ms
93,628 KB
testcase_22 AC 99 ms
93,116 KB
testcase_23 AC 97 ms
93,120 KB
testcase_24 AC 99 ms
93,308 KB
testcase_25 AC 96 ms
93,304 KB
testcase_26 AC 93 ms
93,236 KB
testcase_27 AC 93 ms
93,308 KB
testcase_28 AC 87 ms
93,460 KB
testcase_29 AC 84 ms
93,840 KB
testcase_30 AC 85 ms
93,200 KB
testcase_31 AC 86 ms
93,208 KB
testcase_32 AC 80 ms
93,236 KB
testcase_33 AC 80 ms
93,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input():
  return sys.stdin.readline()[:-1]
N=int(input())
S=input()
T=input()
ans=10**10
tmp=sum([1 if S[i]!=T[i] else 0 for i in range(N)])
if tmp%2==0: ans=min(ans,tmp)
tmp=sum([1 if S[-i-1]!=T[i] else 0 for i in range(N)])
if tmp%2==1: ans=min(ans,tmp)
print(ans)
0