일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 파이썬
- 데이콘
- 더현대서울 맛집
- Docker
- ChatGPT
- 캐치카페
- leetcode
- Real or Not? NLP with Disaster Tweets
- PYTHON
- ubuntu
- 편스토랑
- 우분투
- 금융문자분석경진대회
- 맥북
- 백준
- SW Expert Academy
- dacon
- github
- gs25
- 자연어처리
- Kaggle
- AI 경진대회
- Baekjoon
- 편스토랑 우승상품
- 프로그래머스
- Git
- 프로그래머스 파이썬
- hackerrank
- 코로나19
- programmers
- Today
- Total
솜씨좋은장씨
[HackerRank] Min-Max Sum (Python) 본문
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.
For example, arr = [ 1, 3, 5, 7, 9 ]. Our minimum sum is 1 + 3 + 5 + 7 = 16 and our maximum sum is 3 + 5 + 7 + 9 = 24.
We would print
16 24
Function Description
Complete the miniMaxSum function in the editor below. It should print two space-separated integers on one line: the minimum sum and the maximum sum of 4 of 5 elements.
miniMaxSum has the following parameter(s):
- arr: an array of 5 integers
Input Format
A single line of five space-separated integers.
Constraints
1 <= arr[ i ] <= 10^9
Output Format
Print two space-separated long integers denoting the respective minimum and maximum values that can be calculated by summing exactly four of the five integers. (The output can be greater than a 32 bit integer.)
Sample Input
1 2 3 4 5
Sample Output
10 14
Explanation
Our initial numbers are 1, 2, 3, 4, and 5. We can calculate the following sums using four of the five integers:
- If we sum everything except 1, our sum is 2 + 3 + 4 + 5 = 14.
- If we sum everything except 2, our sum is 1 + 3 + 4 + 5 = 13.
- If we sum everything except 3, our sum is 1 + 2 + 4 + 5 = 12.
- If we sum everything except 4, our sum is 1 + 2 + 3 + 5 = 11.
- If we sum everything except 5, our sum is 1 + 2 + 3 + 4 = 10.
Hints: Beware of integer overflow! Use 64-bit Integer.
Solution
#!/bin/python3
import math
import os
import random
import re
import sys
# Complete the miniMaxSum function below.
def miniMaxSum(arr):
sum_num = sum(arr)
min_num = min(arr)
max_num = max(arr)
print(sum_num - max_num, sum_num - min_num)
if __name__ == '__main__':
arr = list(map(int, input().rstrip().split()))
miniMaxSum(arr)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[HackerRank] Birthday Cake Candles (Python) (0) | 2020.04.05 |
---|---|
[HackerRank] Stack and Queues : A Tale of Two Stacks (0) | 2020.04.04 |
[HackerRank] Staircase (Python) (0) | 2020.04.02 |
[BaekJoon] 2133번 : 타일 채우기 (Python) (0) | 2020.04.01 |
[BaeKJoon] 10610번: 30 (Python) (0) | 2020.03.31 |