일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- permutation
- 1182
- expo
- 코테
- 안드로이드
- 매일11시
- 홈화면
- 6603
- 뒤로가기
- 최소공배수
- 1260
- Kotlin
- 9095
- Python
- lcm
- 파이썬
- Combination
- 11054
- LCS
- 11057
- 나머지
- 11기
- 괄호
- 11053
- 순열
- 코틀린
- Android
- itertools
- 백준
- 앱
Archives
- Today
- Total
목록16936 (1)
황소개발자
백준 16936 파이썬 python : 나3곱2 @@황소처럼 우직하게@@ 재밌어 이런문제, 방법 2가지 제시
마치 이 뭔가 분열되어가며 답을 찾는 이 느낌. n = int(input()) B = list(map(int, input().split())) def go(x, b, A): b.remove(x) A.append(x) least_one = False if not b: return True if x * 2 in b: least_one = True return go(x * 2, b, A) if x % 3 == 0 and x // 3 in b: least_one = True return go(x // 3, b, A) if not least_one: return False for i in range(n): A = [] flag = go(B[i], B.copy(), A) if flag: print(*A) break..
백준 문제 풀이
2020. 4. 22. 02:50