1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#include <iostream>
#include <cmath>

using namespace std;

char wej[200000];
int wejInt[200000];
int odlegl[200000];
int numodlegl =0;
long long przerwy[200000];
long long howmanybreaks=1;
long long i=0;

void read(){
    long long odle=1;
    while(!(cin>>wej[i]).eof()) {

	if (wej[i]=='a' ||wej[i]=='e' ||wej[i]=='i' ||wej[i]=='o' ||wej[i]=='u' ||wej[i]=='y')
	    wejInt[i] =1;
	else 
	    wejInt[i] = 0;
	i++;
    }
}
void naodleg(){
    long long thesame=1;
    for(int k = 1; k<=i;k++){
	if(wejInt[k-1]==wejInt[k]) {
	    if(k==i) {odlegl[numodlegl]=thesame; numodlegl++;}
	    thesame++;
	
	}
	else{
	    odlegl[numodlegl]=thesame;
	    thesame=1;
	    numodlegl++;
	}
    }
}
    
void obliczprzerwy(){
    long long suma=0;
    for(int k = 0;k<numodlegl;k++){
	if (odlegl[k]>=3){
	    przerwy[howmanybreaks]=-odlegl[k];
	    howmanybreaks++;
	    
	}
	else	{ 
	    suma+=odlegl[k];
	    if (odlegl[k+1]>=3||k+1==numodlegl){
		przerwy[howmanybreaks]=suma;
		howmanybreaks++;
		suma=0;
	    }
	    
	}

	
    }
}

int main(){

    long long A=0,a=0,output=0,all,s;
    read();
    naodleg();
    obliczprzerwy();
    all=i;
//    for(int k = 0; k <numodlegl;k++)
//	cout << " " <<odlegl[k] << " " ;

//    cout <<endl;
    for(int k = 0; k <=howmanybreaks;k++){
	if(przerwy[k] <0);	


//	cout << " " <<przerwy[k] << " " ;

    }
    long long poczatek=0,koniec=2;
    for(long long k = 1; k <howmanybreaks;k+=1){
	if(przerwy[k] <0){
	    a=-przerwy[k];
	    A=przerwy[k-1];
	    if (A<0) {
	//	continue;
		A=0;
//		a=-przerwy[k];
//		k--;
		poczatek=2;
	    }
	}
	else {

	    ;
	    continue;
	}


//	if(przerwy[k-1]<0) {;a=-przerwy[k-1]; A=0; poczatek=2;k--;
	
//	}

//	cout<< endl<<" A = " << A << " a= " << a <<endl;

	if (a==0) {
	//    k--;
	    continue;
	}
//	cout <<endl <<" k= " << k<<endl;

	if(k>2) poczatek =2;
	
	s= (2+a-3)*(a-2)/2;
	output +=s;
//	cout << " outputs= " << output;
	output += (A + poczatek)*(a-2);
//	cout << " outputA= " << output;
	

	all= all -(A+a);
	if(k>2) poczatek =2;
	output += (a-2)*(all); 
//	cout << " outputB= " << output;
	output += (A + poczatek)*(all);
//	cout << " outputAB= " << output;

//	cout << "  output= " << output <<" all= " <<all << "a= " <<a << " A= " <<A;


    }
    if(przerwy[howmanybreaks-1]<0&&przerwy[howmanybreaks-2]<0) {
	a=-przerwy[howmanybreaks-1];
	A=0;
	
//	output+=(2+a-3)*(a-2)/2+(2*(a-2));
    }
    cout<<output;
    return 0;
}