Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

write a java code about following problem: Seven Wonders is a card drafting game in which players build structures to earn points. The player who

write a java code about following problem:

Seven Wonders is a card drafting game in which players build structures to earn points. The player who ends with the most points wins. One winning strategy is to focus on building scientific structures. There are three types of scientific structure cards: Tablet (T), Compass (C), and Gear (G). For each type of cards, a player earns a number of points that is equal to the squared number of that type of cards played. Additionally, for each set of three different scientific cards, a player scores 7 points.

For example, if a player plays 3 Tablet cards, 2 Compass cards and 1Gear card, she gets 3^2+2^2+1^2+7=21 points.

It might be tedious to calculate how many scientific points a player gets by the end of each game. Therefore, you are here to help write a program for the calculation to save everyones time.

Input

The input has a single string with no more than 5050 characters. The string contains only letters T, C or G, which denote the scientific cards a player has played in a Seven Wonders game.

Output

Output the number of scientific points the player earns.

Note

Seven Wonders was created by Antoine Bauza, and published by Repos Production. Antoine Bauza and Repos Production do not endorse and have no involvement with the ProgNova contest.

Sample Input 1 Sample Output 1
TCGTTC 
21 
Sample Input 2 Sample Output 2
CCC 
9 
Sample Input 3 Sample Output 3
TTCCGG 
26

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

The Database Relational Model A Retrospective Review And Analysis

Authors: C. J. Date

1st Edition

0201612941, 978-0201612943

More Books

Students also viewed these Databases questions

Question

7. Understand the challenges of multilingualism.

Answered: 1 week ago

Question

=+C&B (especially taxation) laws, regulations, and practices?

Answered: 1 week ago