結果

問題 No.2209 Flip and Reverse
ユーザー HydruHydru
提出日時 2023-02-10 21:24:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 80,524 KB
最終ジャッジ日時 2024-07-07 15:33:14
合計ジャッジ時間 3,680 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,328 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 34 ms
51,712 KB
testcase_04 AC 32 ms
51,456 KB
testcase_05 AC 32 ms
51,712 KB
testcase_06 AC 32 ms
51,968 KB
testcase_07 AC 33 ms
51,456 KB
testcase_08 AC 71 ms
80,256 KB
testcase_09 AC 33 ms
51,328 KB
testcase_10 AC 32 ms
52,096 KB
testcase_11 AC 33 ms
51,712 KB
testcase_12 AC 32 ms
51,584 KB
testcase_13 AC 33 ms
51,968 KB
testcase_14 AC 88 ms
80,128 KB
testcase_15 AC 91 ms
80,000 KB
testcase_16 AC 90 ms
79,744 KB
testcase_17 AC 88 ms
80,000 KB
testcase_18 AC 90 ms
80,384 KB
testcase_19 AC 89 ms
80,384 KB
testcase_20 AC 89 ms
80,512 KB
testcase_21 AC 87 ms
80,000 KB
testcase_22 AC 87 ms
80,128 KB
testcase_23 AC 90 ms
80,524 KB
testcase_24 AC 84 ms
79,872 KB
testcase_25 AC 84 ms
80,128 KB
testcase_26 AC 86 ms
80,284 KB
testcase_27 AC 87 ms
80,128 KB
testcase_28 AC 75 ms
80,400 KB
testcase_29 AC 75 ms
80,256 KB
testcase_30 AC 75 ms
80,256 KB
testcase_31 AC 74 ms
80,000 KB
testcase_32 AC 71 ms
80,128 KB
testcase_33 AC 70 ms
80,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans=2**61-1

dif=0
for i in range(n):
    if S[i]!=T[i]:
        dif+=1

if dif%2==0:
    ans=dif

U=S[::-1]

dif=0
for i in range(n):
    if T[i]!=U[i]:
        dif+=1

if dif%2==1:
    ans=min(ans,dif)

print(ans)
0