Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- django
- issue
- C++
- cos pro
- cos
- 안드로이드
- BAEKJOON
- 동적계획법과최단거리역추적
- AndroidStudio
- Python
- DART
- 분할정복
- 개발
- 코테
- android
- 백준
- 안드로이드스튜디오
- vuejs
- 알고리즘
- 코딩테스트
- Flutter
- Vue
- cos pro 1급
- 파이썬
- 코드품앗이
- 동적계획법
- DFS
- Algorithm
- DFS와BFS
- codingtest
Archives
- Today
- Total
목록자아도취 수 python (1)
Development Artist
[COS Pro 1급, Python] 4차 6번 : 자아도취 수
문제 유형 빈칸 난이도 hard Note 1. 자아도취 수 : 어떤 자리수 K가 주어졌을 때, 각 자리수의 K제곱합이 자기 자신이 되는 수. 2. K의 의미. k = 3면 100~999까지 숫자 범위. k = 4면 1000~9999. 즉, 범위를 나타냄. 따라서, for문의 범위를 정할 수 있음. (코드 11, 12줄) 3. calculated += power(current%10, k) : k 제곱수 더하고, current //= 10 : 다음 자리수로 이동 -> 반복 Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean def power(base, exponent): val = 1 for i in range(exponent): val *= b..
Algorithm/COS
2022. 2. 25. 13:13