티스토리 뷰
"""
*packageName :
* fileName : 1744_수_묶기_G4
* author : qkrtk
* date : 2022-03-23
* description :
* ===========================================================
* DATE AUTHOR NOTE
* -----------------------------------------------------------
* 2022-03-23 qkrtk 최초 생성
"""
def Solution(n, num_list):
result = 0
negative_list = []
positive_list = []
for num in num_list:
if num <= 0:
negative_list.append(num)
else:
positive_list.append(num)
positive_list.sort(reverse=True)
print("positive_list : %s " % positive_list)
temp = 0
for index, num in enumerate(positive_list):
if temp != 0:
gop_num = temp * num
if temp + num > gop_num:
result += temp + num
else:
result += temp * num
temp = 0
else:
temp = num
if len(positive_list) - 1 == index:
result += temp
negative_list.sort()
print("negative_list : %s " % negative_list)
temp2 = 1
switch = False
for index, num in enumerate(negative_list):
if switch:
result += num * temp2
switch = False
continue
if num == 0:
continue
elif not switch:
temp2 = num
switch = True
if len(negative_list) - 1 == index:
result += temp2
print(result)
n = int(input())
list_a = []
for _ in range(n):
list_a.append(int(input()))
print("list_a : %s " % list_a)
Solution(n, list_a)
Solution(5, [-3, -2, -1, 1, 2])
Solution(2, [1, 2])
Solution(3, [-6, -5, -1])
Solution(5, [1, 1, 1, 1, 1])
Solution(13, [-10, -9, -8, -7, -6, -5, 1, 2, 3, 4, 5, 6, 7])
Solution(10, [-5, -4, -3, 0, 1, 2, 3, 4, 5, 6])
Solution(10, [-10, -9, -8, -7, -6, 0, 1, 2, 3, 4])
Solution(5, [-3, -2, -1, 1, 2])
Solution(5, [-3, -2, -1, 1, 2])
Solution(5, [-3, -2, -1, 1, 2])
# Solution(4, [-1, 2, 1, 3])
# Solution(6, [0, 1, 2, 4, 3, 5])
# Solution(1, [-1])
# Solution(3, [-1, 0, 1])
# Solution(2, [1, 1])
- 음 양을 나눈뒤 정렬을 통해서 최대수를 추측하면된다.
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 구현
- 자료구조
- java
- solved.ac
- Git
- 2019 카카오 개발자 겨울 인턴십
- K번째수
- 코딩테스트
- stack
- 킹
- 1063
- 브루트포스
- 백준
- 10진수
- 프로그래머스 # 음양더하기
- ASCII코드
- 인형뽑기
- 오
- 자료표현
- 알고리즘
- 프로그래머스
- 크레인 인형뽑기 게임
- 카카오 코딩테스트
- 2진수
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함