Source Code
#include <fstream>
#include <stdio.h>
#include <iostream>
#include <string>
#include <cmath>
#include <algorithm>
#include <vector>
#include <math.h>
#include <iomanip>
#include <map>
#include <queue>
#include <stack>
#include <list>

using namespace std;

int main ()
{
    string s,alph="abcdefghijklmnopqrstuvwxyz";
    int a=10000001,m=0;
    cin>>s;
    for(int j=0; j<26; j++)
    {
        int x=0;
        for(int i=0; i<s.length(); i++)
        {
            x+=abs(s[i]-alph[j]);
        }
        if(a>x)
        {
            a=x;
        }
    }
    cout<<a<<endl;
}
Copy
Palindrome Substrings Abbro
GNU G++17
3 ms
892 KB
Accepted