結果

問題 No.2209 Flip and Reverse
ユーザー H20H20
提出日時 2023-02-10 22:35:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 248,964 KB
最終ジャッジ日時 2024-07-07 16:41:32
合計ジャッジ時間 7,220 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,488 KB
testcase_01 AC 33 ms
53,284 KB
testcase_02 AC 33 ms
52,120 KB
testcase_03 AC 32 ms
52,756 KB
testcase_04 AC 33 ms
53,068 KB
testcase_05 AC 33 ms
52,736 KB
testcase_06 AC 33 ms
53,144 KB
testcase_07 AC 34 ms
53,432 KB
testcase_08 AC 238 ms
248,180 KB
testcase_09 AC 33 ms
53,288 KB
testcase_10 AC 33 ms
52,352 KB
testcase_11 AC 32 ms
52,072 KB
testcase_12 AC 31 ms
52,504 KB
testcase_13 AC 33 ms
53,284 KB
testcase_14 AC 260 ms
246,968 KB
testcase_15 AC 267 ms
246,408 KB
testcase_16 AC 264 ms
246,284 KB
testcase_17 AC 264 ms
246,348 KB
testcase_18 AC 262 ms
246,784 KB
testcase_19 AC 262 ms
246,284 KB
testcase_20 AC 262 ms
246,408 KB
testcase_21 AC 267 ms
246,916 KB
testcase_22 AC 261 ms
246,664 KB
testcase_23 AC 262 ms
246,792 KB
testcase_24 AC 255 ms
248,048 KB
testcase_25 AC 252 ms
248,324 KB
testcase_26 AC 256 ms
248,068 KB
testcase_27 AC 256 ms
248,068 KB
testcase_28 AC 241 ms
248,588 KB
testcase_29 AC 239 ms
248,964 KB
testcase_30 AC 236 ms
248,580 KB
testcase_31 AC 240 ms
248,716 KB
testcase_32 AC 234 ms
248,180 KB
testcase_33 AC 235 ms
248,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(input())
SR = S[::-1]
T = list(input())
scnt = sum([1 for s,t in zip(S,T) if s!=t])
srcnt = sum([1 for sr,t in zip(SR,T) if sr!=t])
if scnt%2==0 and srcnt%2==0:
    print(scnt)
elif scnt%2==0:
    print(min(scnt,srcnt))
elif srcnt%2==0:
    print(N)
else:
    print(srcnt)
0