일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 코틀린
- 11053
- 안드로이드
- Combination
- 홈화면
- 1260
- itertools
- Android
- 순열
- 1182
- 뒤로가기
- 6603
- 최소공배수
- 11057
- 나머지
- 11054
- 9095
- Kotlin
- LCS
- 매일11시
- 코테
- permutation
- 파이썬
- 백준
- lcm
- 괄호
- expo
- 앱
- Python
- 11기
Archives
- Today
- Total
목록16943 (1)
황소개발자
백준 16943 파이썬 python : 숫자 재배치 @@황소처럼 우직하게@@ permutations 사용해부려
뚝딱해부려 10 팩토리얼이 얼말까? 3,628,800 11 팩토리얼이 약 4000만 근데 여기선 10자리수가 최대, 근데 심지어 1,000,000,000 까지니까 실상 9팩토리얼이다. 시간복잡도가 10팩토리얼까지여도 가능한데 9 팩토리얼은 매우 안전빵이다. import sys import itertools input = sys.stdin.readline a, b = input().split() b = int(b) lst = list(map(''.join, list(itertools.permutations(a)))) c = -1 for num in lst: first = num[0] num = int(num) if b >= num and first != '0': c = max(c, num) print(c)
백준 문제 풀이
2020. 4. 22. 21:07