일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 나머지
- 매일11시
- 앱
- Kotlin
- 1182
- expo
- 뒤로가기
- 1260
- 9095
- Combination
- 11057
- 코틀린
- Python
- LCS
- Android
- lcm
- 괄호
- itertools
- 파이썬
- 백준
- 11054
- 11기
- 6603
- 11053
- 코테
- 홈화면
- 최소공배수
- 순열
- 안드로이드
Archives
- Today
- Total
목록1107 (1)
황소개발자
백준 1107 파이썬 python : 리모컨 @@황소처럼 우직하게@@ 반례모음, 깔끔코딩
예외처리를 좀 해줘야하는 문제이다. bgoodsamari님이 반례 모음을 올려주셨다. https://www.acmicpc.net/board/view/46120 위 링크에 반례들이 모여있다. n = int(input()) m = int(input()) ms = [] if m != 0: ms = list(input().split()) ans = 999999999 length = 0 for i in range(1000000): broken = False for s in str(i): if s in ms: broken = True if broken: pass else: if ans > abs(n - i): ans = abs(n - i) length = len(str(i)) ans = min(ans + lengt..
백준 문제 풀이
2020. 3. 7. 08:11