Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Kaggle
- 프로그래머스
- Docker
- 편스토랑
- dacon
- 캐치카페
- 데이콘
- 편스토랑 우승상품
- 백준
- leetcode
- 우분투
- Baekjoon
- ChatGPT
- 자연어처리
- ubuntu
- github
- hackerrank
- 금융문자분석경진대회
- 맥북
- SW Expert Academy
- 코로나19
- AI 경진대회
- gs25
- 프로그래머스 파이썬
- Git
- 더현대서울 맛집
- 파이썬
- PYTHON
- Real or Not? NLP with Disaster Tweets
- programmers
Archives
- Today
- Total
솜씨좋은장씨
[SW_Expert_Academy] 5948번 새샘이의 7-3-5 게임 (Python) 본문
728x90
반응형
1일 1문제 106일차!
오늘의 문제는 SW Expert Academy 새샘이의 7-3-5 게임입니다.
Solution
from itertools import combinations
T = int(input())
for i in range(T):
numbers = list(set(map(int, input().split(' '))))
comb = combinations(numbers, 3)
comb_sum = [sum(cmb) for cmb in comb]
comb_sum = list(set(comb_sum))
comb_sort = sorted(comb_sum, reverse = True)
print("#{} {}".format(i+1, comb_sort[4]))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[SW_Expert_Academy] 4522번 세상의 모든 팰린드롬 (Python) (0) | 2020.05.24 |
---|---|
[BaeKJoon] 11057번: 오르막 수 (Python) (0) | 2020.05.23 |
[SW_Expert_Academy] 5162번 두가지 빵의 딜레마 (Python) (0) | 2020.05.21 |
[leetCode] 66. Plus One (Python) (0) | 2020.05.20 |
[leetCode] 69. Sqrt(x) (Python) (0) | 2020.05.19 |
Comments