#abc307a. A - Weekly Records
A - Weekly Records
Score : points
问题描述
Takahashi 记录了他在 周内所走的步数。在第 天,他走了 步。
求 Takahashi 每周总共走的步数。 更具体地说,找出第一周(第 天至第 天)的步数之和、第二周(第 天至第 天)的步数之和,依此类推。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
Takahashi has recorded the number of steps he walked for weeks. He walked steps on the -th day.
Find the total number of steps Takahashi walked each week.
More precisely, find the sum of the steps for the first week (the -st through -th day), the sum of the steps for the second week (the -th through -th day), and so on.
Constraints
- All input values are integers.
Input
The input is given from Standard Input in the following format:
Output
Let be the number of steps walked for the -th week. Print in this order, separated by spaces.
Sample Input 1
2
1000 2000 3000 4000 5000 6000 7000 2000 3000 4000 5000 6000 7000 8000
Sample Output 1
28000 35000
For the first week, he walked steps, and for the second week, he walked steps.
Sample Input 2
3
14159 26535 89793 23846 26433 83279 50288 41971 69399 37510 58209 74944 59230 78164 6286 20899 86280 34825 34211 70679 82148
Sample Output 2
314333 419427 335328
update @ 2024/3/10 08:40:27