Dcoder icon

Array Sum @ Dcoder

By Lochard | As a newbie programmer | 31 Mar 2023


Problem: You are given an integer array and you have to find the sum of the elements of the array and find the remainder when the sum is divided by the largest number of the array.

Input: First line contains N, the number of elements. Next line contains N space separated integers (elements of the array).
Output: Print the remainder when sum is divided by the maximum element.
Constraints: 1 ≤ n ≤ 100
0 ≤ A[i] ≤ 1000
Sample Input: 5
1 2 3 4 5
Sample Output:
0

input()
a = list(map(int, input().split()))
print(sum(a) % max(a))

How do you rate this article?

2


Lochard
Lochard

20240228 Arrived in the UK for about 2 week. All my fears persist. Some are even getting worse. https://github.com/locharp/asylum_diary/


As a newbie programmer
As a newbie programmer

Sharing entry level codes. My snippets on GitHub https://github.com/locharp/code-snippets

Publish0x

Send a $0.01 microtip in crypto to the author, and earn yourself as you read!

20% to author / 80% to me.
We pay the tips from our rewards pool.