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
#include <iostream>
#include <string>
#include <vector>
using namespace std;
bool samogloska(char s)
{
    if(s=='a' || s=='e' || s=='i' || s=='o' || s=='u' || s=='y') return true;
    else return false;
}
int main()
{
    cin.tie(0);
    cout.tie(0);
    ios_base::sync_with_stdio(0);
    string s;
    vector<int>pocz;
    vector<int>kon;
    cin >> s;
    int sa=0;
    int t=0;
    int p=0;
    int k=0;
    long long w=0;
    bool x=true;
    for(int i=0; i<s.size(); ++i)
    {
        if(samogloska(s[i])==true)
        {
            if(x==false || i==0)
            {
                x=true;
                sa=0;
                p=i;
            }
            sa++;
            if(sa==3)
            {
                t++;
                k=i;
                pocz.push_back(p);
                kon.push_back(k);
            }
            else if(sa>3)
            {
                t++;
                k++;
                p++;
                pocz.push_back(p);
                kon.push_back(k);

            }
        }
        else
        {
            if(x==true)
            {
                x=false;
                sa=0;
                p=i;
            }
            sa++;
            if(sa==3)
            {
                t++;
                k=i;
                pocz.push_back(p);
                kon.push_back(k);
            }
            else if(sa>3)
            {
                t++;
                k++;
                p++;
                pocz.push_back(p);
                kon.push_back(k);
            }
        }
    }
    kon.push_back(s.size());
    for(int i=0; i<pocz.size(); ++i)
    {
        w=w+(pocz[i]+1)*(kon[i+1]-kon[i]);
    }
    cout << w << endl;
    return 0;
}