結果

問題 No.2209 Flip and Reverse
ユーザー ikomaikoma
提出日時 2023-02-10 21:57:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 445 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 144,276 KB
最終ジャッジ日時 2024-07-07 16:12:50
合計ジャッジ時間 5,758 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,540 KB
testcase_01 AC 33 ms
52,732 KB
testcase_02 AC 33 ms
53,232 KB
testcase_03 AC 32 ms
52,000 KB
testcase_04 AC 33 ms
51,968 KB
testcase_05 AC 32 ms
52,088 KB
testcase_06 AC 31 ms
52,340 KB
testcase_07 AC 37 ms
52,076 KB
testcase_08 AC 157 ms
143,272 KB
testcase_09 AC 33 ms
52,572 KB
testcase_10 AC 34 ms
52,548 KB
testcase_11 AC 35 ms
52,704 KB
testcase_12 AC 34 ms
53,252 KB
testcase_13 AC 35 ms
52,264 KB
testcase_14 AC 183 ms
143,244 KB
testcase_15 AC 178 ms
143,608 KB
testcase_16 AC 184 ms
143,536 KB
testcase_17 AC 181 ms
143,784 KB
testcase_18 AC 182 ms
143,376 KB
testcase_19 AC 188 ms
143,064 KB
testcase_20 AC 186 ms
143,624 KB
testcase_21 AC 189 ms
143,136 KB
testcase_22 AC 188 ms
144,276 KB
testcase_23 AC 197 ms
144,020 KB
testcase_24 AC 177 ms
143,456 KB
testcase_25 AC 175 ms
143,540 KB
testcase_26 AC 176 ms
143,676 KB
testcase_27 AC 173 ms
143,164 KB
testcase_28 AC 163 ms
143,676 KB
testcase_29 AC 166 ms
143,616 KB
testcase_30 AC 163 ms
143,840 KB
testcase_31 AC 156 ms
143,436 KB
testcase_32 AC 159 ms
143,140 KB
testcase_33 AC 158 ms
143,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
S=list(map(int,input().strip()))
T=list(map(int,input().strip()))
INF=10**9
ans=INF
x=0
for s,t in zip(S,T):
    if s!=t:x+=1
if x%2==0:
    ans = x
x=0
for s,t in zip(S[::-1],T):
    if s!=t:x+=1
if x%2==1:
    ans = min(ans, x)
print(ans)
0