#include #include #include #include #include #include #include #include using namespace std; typedef long long ll; typedef pair P; int rem3(int x){ return ((x%3)+3)%3; } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; string s; cin >> s; int x = 0, y = 0; set

st; st.insert(P(0, 0)); for(char c : s){ int m = c-'a'; if(rem3(m-x) == 0){ if((x+y)%2 == 0){ y--; }else{ y++; } }else if(rem3(m-x) == 1){ x--; }else{ x++; } st.insert(P(x, y)); // cout << x << ' ' << y << endl; } cout << st.size() << endl; }