일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- quantification
- jmeter
- q-former
- Kaggle
- tensorflow
- error
- memory bank
- transference
- hackerrank
- Linux
- timechat
- autogluon
- Artificial Intelligence
- Python
- MySQL
- Server
- leetcode
- multimodal machine learning
- long video understanding
- Anaconda
- LeNet-5
- 백준
- timestamp-aware frame encoder
- secure-file-priv
- Github
- sliding video q-former
- CNN
- 코딩테스트
- 용어
- ma-lmm
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- quantification
- jmeter
- q-former
- Kaggle
- tensorflow
- error
- memory bank
- transference
- hackerrank
- Linux
- timechat
- autogluon
- Artificial Intelligence
- Python
- MySQL
- Server
- leetcode
- multimodal machine learning
- long video understanding
- Anaconda
- LeNet-5
- 백준
- timestamp-aware frame encoder
- secure-file-priv
- Github
- sliding video q-former
- CNN
- 코딩테스트
- 용어
- ma-lmm
- Today
- Total
Juni_DEV
[Python, HackerRank] Mini-Max Sum 본문
주어진 문제
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
arr = [1,3,5,7,9]
The minimum sum is 1+3+5+7 = 16
and the maximum sum is 3+5+7+9 = 24.
The function prints
16 24
Function Description
Complete the miniMaxSum function in the editor below.
miniMaxSum has the following parameter(s):
- arr: an array of integers
Print two space-separated integers on one line: the minimum sum and the maximum sum of 4 of 5 elements.
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
The numbers are 1, 2, 3, 4, and 5. Calculate the following sums using four of the five integers:
- Sum everything except 1, the sum is 2+3+4+5 = 14.
- Sum everything except 2, the sum is 1+3+4+5 = 13.
- Sum everything except 3, the sum is 1+2+4+5 = 12.
- Sum everything except 4, the sum is 1+2+3+5 = 11.
- Sum everything except 5, the sum is 1+2+3+4 = 10.
Hints: Beware of integer overflow! Use 64-bit Integer.
값이 5개인 주어진 배열에서 4개를 뽑아 가장 작은 값, 가장 큰 값 만들기
def miniMaxSum(arr):
# Write your code here
arr = sorted(arr)
print(sum(arr[:4]), sum(arr[1:]))
'Coding Interview' 카테고리의 다른 글
[Python, HackerRank] Breaking the Records (0) | 2023.04.14 |
---|---|
[Python, LeetCode] 1. Two Sum (0) | 2023.04.14 |
[Python, HackerRank] Time-conversion (0) | 2023.04.13 |
[Python, HackerRank] Plus Minus (2) | 2023.04.13 |
[Python, 프로그래머스] 단어 변환 (0) | 2021.06.25 |