일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- humble development guides
- nav2 tutorial
- ros2 remapping
- nav2 development guides
- ros2 foxy tutorial
- ros2 configuring environment
- docker foxy
- nav2 설치
- first-time robot setup guide
- foxy nav2
- error
- ros2 development guides
- nav2 first-time robot setup guide
- Foxy tutorial
- nav2 dev contatiner
- Nav2 document
- Python
- nav2 getting started
- ros2 환경설정
- nav2 튜토리얼
- ros2 튜토리얼 환경설정
- humble 환경설정
- ROS FOXY 튜토리얼
- nav2 development guides
- CODEUP 6073
- ros2 튜토리얼
- ros2 foxy docker
- 코드업
- development guides
- CodeUp
Archives
- Today
- Total
BAN2ARU
[백준/Python] 1065번 : 한수 본문
반응형
풀이 (함수 활용)
def calc_hansu(num) :
cnt = 0
for n in range(1, num+1):
if n < 100:
cnt += 1
else :
str_n = list(map(int, str(n)))
if str_n[2] - str_n[1] == str_n[1] - str_n[0] :
cnt += 1
return cnt
if __name__ == "__main__" :
n = int(input())
print(calc_hansu(n))
728x90
'Coding Test > BaekJoon' 카테고리의 다른 글
[Python/백준] 1463번 : 1로 만들기 (DP : dynamic programing) (0) | 2022.10.23 |
---|---|
[백준/Python] 4673번 : 셀프 넘버 (0) | 2022.10.19 |
[백준/Python] 2562 최댓값 (0) | 2022.10.08 |
[백준/Python] 1110번 : 더하기 사이클 (0) | 2022.09.19 |
[백준/python] 10951번 : A+B - 4 (0) | 2022.09.14 |
Comments