HomeVolumesContestsSectionsForumsUsersPrintHelpAbout

Volumes > Array and Matrices > problem:


125. 50538 - Sum of kth Diagonal

Guest
• Review clarifications (1)

Volume problems

• 50594 - Transformations
• 51182 - Count and Sum 2
• 51193 - The max element of k-th co...
• 51196 - The sum of two arrays
• 51197 - Even and odd Numbers
• Problem 3
• 50468 - Draw Matrix - 2
• 010. 50381 - Sum of the numbers
• 125. 50538 - Sum of kth Diagonal
• 140. 50599 - Sum of Squared Error ...
• 15-SprPrE1-80. 50741 - DNA Distance
• 155. 50334 - What is the class aver...
• 185. 50784 - Top Growing Company
• 220. 50754 - Team Standings
• 230. 50286 - Remove Duplicates
• 250. 50448 - Paint Buckets
• 280. 50477 - Character Pyramids

Feedback

If you notice incorrect translations in Contester, please let author know.

Time limit 2000/4000/4000/4000 ms. Memory limit 65000/65000/65000/65000 Kb.
Question by Ibrahim Mesecan.

Sum of kth Diagonal

Question: Diagonal of a matrix starts from upper left corner and goes to the lower right corner. You are given an nXn square matrix. Find the sum of kth diagonal. For example, the third diagonal starts from the third row first element (4). And then, every element is connected to its lower right neigbour (13 and then 4) until it reaches to the border of the square.

Input specification
You will be given two integer numbers (n and k) at the beginning where 1 ≤ n ≤ 100 and 1 ≤ k ≤ 2*n-1. Then, in the following n lines, you will be given n integers, which are between 0 and 1000.

Output specification
Show just one number: sum of kth diagonal.

 Sample Input   
  5 6
  7 6 4 1 5
  5 9 7 8 7
  6 7 8 7 5
  8 8 0 4 10
  7 5 0 2 0
 Sample Output   
  30


Explanation:   6+7+7+10=30


Для отправки решений необходимо выполнить вход.

www.contester.ru