結果

問題 No.2209 Flip and Reverse
ユーザー vwxyzvwxyz
提出日時 2024-08-15 12:12:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 478 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 39,224 KB
最終ジャッジ日時 2024-08-15 12:12:42
合計ジャッジ時間 12,214 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 24 ms
10,880 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 24 ms
10,880 KB
testcase_05 AC 24 ms
10,752 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 24 ms
10,752 KB
testcase_08 AC 460 ms
37,112 KB
testcase_09 AC 24 ms
10,752 KB
testcase_10 AC 23 ms
10,752 KB
testcase_11 AC 23 ms
10,752 KB
testcase_12 AC 24 ms
10,752 KB
testcase_13 AC 23 ms
10,752 KB
testcase_14 AC 450 ms
38,716 KB
testcase_15 AC 450 ms
39,224 KB
testcase_16 AC 468 ms
39,096 KB
testcase_17 AC 449 ms
36,984 KB
testcase_18 AC 449 ms
37,240 KB
testcase_19 AC 450 ms
37,112 KB
testcase_20 AC 450 ms
37,112 KB
testcase_21 AC 450 ms
38,540 KB
testcase_22 AC 452 ms
37,112 KB
testcase_23 AC 451 ms
38,288 KB
testcase_24 AC 448 ms
37,108 KB
testcase_25 AC 448 ms
37,240 KB
testcase_26 AC 470 ms
38,668 KB
testcase_27 AC 472 ms
38,712 KB
testcase_28 AC 462 ms
37,108 KB
testcase_29 AC 471 ms
39,096 KB
testcase_30 AC 440 ms
38,368 KB
testcase_31 AC 444 ms
36,984 KB
testcase_32 AC 478 ms
37,240 KB
testcase_33 AC 464 ms
37,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=list(map(int,list(input())))
T=list(map(int,list(input())))
cnt0=sum(s^t for s,t in zip(S,T))
cnt1=sum(s^t for s,t in zip(S[::-1],T))
inf=1<<30
ans=inf
if cnt0%2==0:
    ans=min(ans,cnt0)
if cnt1%2:
    ans=min(ans,cnt1)
print(ans)
0