Programming-Competition-Test-1
Programming-Competition-Test-1
Output
Print the maximum number
Sample Input 1
3
8
5
Sample Output 1
8
Sample Input 2
6
6
6
Sample Output 2
6
Explanation:When all three numbers are the same, the maximum is that number itself.
Problem 2: Trapezoids
You are given a trapezoid. The lengths of its upper base, lower base, and height are a, b, and h,
respectively.
Task:
Find the area of this trapezoid.
Constraints
• 1≦a≦100
• 1≦b≦100
• 1≦h≦100
• All input values are integers.
• h is even.
Input
The input is given from Standard Input in the following format:
a
b
h
Output
Print the area of the given trapezoid. It is guaranteed that the area is an integer.
Sample Input 1
3
4
2
Sample Output 1
7
Explanation: When the lengths of the upper base, lower base, and height are 3, 4, and 2,
respectively, the area of the trapezoid is (3+4)×2/2=7.
Sample Input 2
4
4
4
Sample Output 2
16
Explanation: In this case, a parallelogram is given, which is also a trapezoid.
Problem 3: Age Group
Given a person's age a, determine their age group.
Age groups are defined as:
• Infant: 0-1
• Child: 2-12
• Teenager: 13-19
• Adult: 20-64
• Senior: 65 and above
Constraints
• 0≦age≦120
• All input values are integers.
• All input values are integers.
Input
The input is given from Standard Input in the following format:
a
Output
Print the age group corresponding to the input age.
Sample Input 1
5
Sample Output 1
Child
Sample Input 2
25
Sample Output 1
Adult
Problem 4: Counting Unique Paint Can Colors
Takashi, an artist, has purchased three paint cans in the past three days. The colors of these cans
are represented by integers between 1 and 100, inclusive, and are denoted as a, b, and c. It's
possible that Takashi may have bought multiple paint cans of the same color.
Task:
Write a program to count the number of unique colors among the three paint cans.
Constraints
1≦a,b,c≦100
Input
The input is given from Standard Input in the following format:
abc
Output
Print the number of different kinds of colors of the paint cans.
Sample Input 1
314
Sample Output 1
3
Explanation: Three different colors: 1, 3, and 4.
Sample Input 2
5 5 55
Sample Output 2
2
Explanation: Two different colors: 5 and 55.
Problem 5: Infinite Coins
Alex has 𝑨 1-peso coins and an unlimited supply of 20-peso coins. Determine if Alex can make an
exact payment of 𝑵 pesos using only these coins.
Constraints
• N is an integer between 1 and 10000 (inclusive).