1892.Anton and Polyhedrons

Time Limit: 1s Memory Limit: 256MB

Anton's favourite geometric figures are regular polyhedrons. Note that there are five kinds of regular polyhedrons:
Tetrahedron. Tetrahedron has 4 triangular faces. Cube. Cube has 6 square faces. Octahedron. Octahedron has 8 triangular faces. Dodecahedron. Dodecahedron has 12 pentagonal faces. Icosahedron. Icosahedron has 20 triangular faces.
All five kinds of polyhedrons are shown on the picture below:

1892_1.png

Anton has a collection of n polyhedrons. One day he decided to know, how many faces his polyhedrons have in total. Help Anton and find this number!

Input Format(From the terminal/stdin)

The first line of the input contains a single integer n (1 \le n \le 200000)- the number of polyhedrons in Anton's collection.

Each of the following n lines of the input contains a string si- the name of the i-th polyhedron in Anton's collection. The string can look like this:
"Tetrahedron" (without quotes), if the i-th polyhedron in Anton's collection is a tetrahedron. "Cube" (without quotes), if the i-th polyhedron in Anton's collection is a cube. "Octahedron" (without quotes), if the i-th polyhedron in Anton's collection is an octahedron. "Dodecahedron" (without quotes), if the i-th polyhedron in Anton's collection is a dodecahedron. "Icosahedron" (without quotes), if the i-th polyhedron in Anton's collection is an icosahedron.

Output Format(To the terminal/stdout)

Output one number- the total number of faces in all the polyhedrons in Anton's collection.

Sample Input 1

Copy
4
Icosahedron
Cube
Tetrahedron
Dodecahedron
 \n
           \n
    \n
           \n
            \n

Sample Output 1

Copy
42
  \n

Sample Input 2

Copy
3
Dodecahedron
Octahedron
Octahedron
 \n
            \n
          \n
          \n

Sample Output 2

Copy
28
  \n

Hints

In the first sample Anton has one icosahedron, one cube, one tetrahedron and one dodecahedron. Icosahedron has 20 faces, cube has 6 faces, tetrahedron has 4 faces and dodecahedron has 12 faces. In total, they have 20+6+4+12=42 faces.

Submit

请先 登录

© 2025 FAQs