반응형
츄르사려고 코딩하는 코집사입니다.
1. [백준] 백준 28417번 스케이트보드 파이썬(Python)
1) 문제번호 : 28417번
2) 문제 출처
https://www.acmicpc.net/problem/28417
2. 풀이
- 총 7개의 값이 들어 오는데, 1,2 번째와 3~7번째 값들을 각 리스트로 분배를 하여 오름차순으로 정렬을 한 다음에 최대값, 최대값과 2번째값을 더하여 maxNum 중에 max값을 구하여 출력하면 된다.
3. 소스 코드
import sys
input = sys.stdin.readline
N = int(input())
maxNum = 0
for i in range(N) :
inputList = list(map(int, input().split()))
sum = 0
aList = []
bList = []
for j in range(0,2) :
aList.append(int(inputList[j]))
for j in range(2,7) :
bList.append(int(inputList[j]))
aList.sort()
bList.sort()
sum += aList[1] + bList[3] + bList[4]
maxNum = max(maxNum, sum)
print(maxNum)
반응형
'알고리즘 > 백준 알고리즘' 카테고리의 다른 글
[백준] 백준 27959번 초코바 파이썬(Python) (0) | 2023.10.31 |
---|---|
[백준] 백준 30403번 무지개 만들기 파이썬(Python) (0) | 2023.10.30 |
[백준] 백준 30402번 감마선을 맞은 컴퓨터 파이썬(Python) (0) | 2023.10.29 |
[백준] 백준 28235번 코드마스터 2023 파이썬(Python) (0) | 2023.10.26 |
[백준] 백준 28447번 마라탕 재료 고르기 파이썬(Python) (0) | 2023.10.25 |
[백준] 백준 28446번 볼링공 찾아주기 파이썬(Python) (0) | 2023.10.24 |
[백준] 백준 28445번 알록달록 앵무새 파이썬(Python) (0) | 2023.10.23 |
[백준] 백준 28444번 HI-ARC=? 파이썬(Python) (0) | 2023.10.23 |
최근댓글