G.W. Coding Contest 2 P1: Nevin's Cookies
Nevin is baking cookies for his friends. Each of his friends want a different sized cookie, so he works hard to cater to their requests. He has some perfectly circular cookie cutters labelled with their radius (1 cm, 2 cm, ...), and each of his friends can choose which cookie cutter size they want for their cookie. How much cookie dough does Nevin need to buy in total, rounded down to the nearest integer? Use 3.14 for .
Note: The answer should be rounded down, intermediate calculations should always remain as decimals to maintain accuracy.
The first line of input will contain an integer, .
The next lines will contain an integer, representing the radius of a cookie cutter.
The output will consist of a single integer, representing the amount of cookie dough in cm 2, that Nevin needs to buy.
Sample Input 1:
Sample Output 1:
Sample Input 2:
Sample Output 2:
Submit Solution