101471: [AtCoder]ABC147 B - Palindrome-philia

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $200$ points

Problem Statement

Takahashi loves palindromes. Non-palindromic strings are unacceptable to him. Each time he hugs a string, he can change one of its characters to any character of his choice.

Given is a string $S$. Find the minimum number of hugs needed to make $S$ palindromic.

Constraints

  • $S$ is a string consisting of lowercase English letters.
  • The length of $S$ is between $1$ and $100$ (inclusive).

Input

Input is given from Standard Input in the following format:

$S$

Output

Print the minimum number of hugs needed to make $S$ palindromic.


Sample Input 1

redcoder

Sample Output 1

1

For example, we can change the fourth character to o and get a palindrome redooder.


Sample Input 2

vvvvvv

Sample Output 2

0

We might need no hugs at all.


Sample Input 3

abcdabc

Sample Output 3

2

Input

题意翻译

有一个字符串 $S$ ,每次可以花费一个价值,将一个字符改成另一个字符。 求最小价值使其变成回文串。 by [djh123456](https://www.luogu.com.cn/user/367575) 。

加入题单

算法标签: