TORONTO KIDS COMPUTER CLUB | Aurora Saturday 14:30 Python Practice 20.10.10.
18446
post-template-default,single,single-post,postid-18446,single-format-standard,ajax_fade,page_not_loaded,,qode-theme-ver-7.6.2,wpb-js-composer js-comp-ver-6.10.0,vc_responsive

Aurora Saturday 14:30 Python Practice 20.10.10.

13 Oct Aurora Saturday 14:30 Python Practice 20.10.10.

Question:

The Logging Company cuts a lot of trees. For management reasons, they want to produce a table of the total amount of wood cut every day. They have hired you, to help them produce the table. They’ve kept a log of trees logged, and they want you to produce a table from this data.

Input Specification

The first line will be the integer D (1D50), representing the number of days in the log. The days will be numbered like this: 1,2,3,…,D.

There will be D groups of lines. Each group will contain the data for day i. The first line of each group contains the integer T(0≤T≤50). The following T lines will contain the mass of wood in each tree cut for that day. The mass will be a non-negative integer no more than 1000.

Output Specification

You are to output Day i: m for every day ii in the input, where m is the sum of the mass of all trees cut that day. If there are no trees cut that day, you should output Weekend.

Sample Input 1
3
3
1
1
1
2
2
2
1
5

Sample Output 1
Day 1: 3
Day 2: 4
Day 3: 5

Explanation for Sample Input 1

There are three days in the log. The first day contains three trees, one mass unit each. The second day contains two trees, two mass units each. The third day contains one tree, measuring five mass units.

Sample Input 2
1 0

Sample Output 2
Weekend

No Comments

Sorry, the comment form is closed at this time.