Cerinta completa

Given five positive integers, find the minimum and maximum values that can be calculated by summing exactly four of the five integers. Then print the respective minimum and maximum values as a single line of two space-separated long integers.

Example

The minimum sum is and the maximum sum is . The function prints

16 24

Function Description

Complete the function with the following parameter(s):

  • : an array of integers

Print

Print two space-separated integers on one line: the minimum sum and the maximum sum of of elements.No value should be returned.

Note For some languages, like C, C++, and Java, the sums may require that you use a long integer due to their size.

Input Format

A single line of five space-separated integers.

Constraints

Sample Input

1 2 3 4 5

Sample Output

10 14

Explanation

The numbers are , , , , and . Calculate the following sums using four of the five integers:

  1. Sum everything except , the sum is .
  2. Sum everything except , the sum is .
  3. Sum everything except , the sum is .
  4. Sum everything except , the sum is .
  5. Sum everything except , the sum is .

Hints: Beware of integer overflow! Use a 64-bit integer to store the sums.


Need help to get started? Try the Solve Me First problem.


Limbajul de programare folosit: python3

Cod:

import sys
arr = list(map(int, sys.stdin.read().strip().split()))
if len(arr) >= 5:
    arr = arr[:5]
total = sum(arr)
print(total - max(arr), total - min(arr))

Scor obtinut: 1.0

Submission ID: 464552222

Link challenge: https://www.hackerrank.com/challenges/mini-max-sum/problem

Mini-Max Sum