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
- 코테
- 코딩테스트
- 백준
- DART
- 동적계획법과최단거리역추적
- C++
- android
- 알고리즘
- AndroidStudio
- DFS와BFS
- Flutter
- django
- Python
- codingtest
- 파이썬
- Algorithm
- Vue
- cos pro
- DFS
- vuejs
- 동적계획법
- 안드로이드스튜디오
- 안드로이드
- 코드품앗이
- 개발
- BAEKJOON
- 분할정복
- cos
- cos pro 1급
- issue
Archives
- Today
- Total
목록카프리카 수 python (1)
Development Artist
[COS Pro 1급, Python] 3차 7번 : 카프리카 수
문제 유형 한줄 수정 난이도 easy Note 1. 카프리카 수 : 자신의 제곱수를 둘로 나눠 더한 값이 자기 자신 ( 단, 둘로 나뉜 수는 양수 ) ex ) 55 -> 55^2 = 3025 -> 30+25 = 55 2. 코딩 유형으로 나온다면, divisor를 사용한다는 것만 떠올리면 될 듯. Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean def solution(k): answer = [] for i in range(1, k + 1): square_num = i * i divisor = 1 while square_num // divisor != 0: front = square_num // divisor back = square_num ..
Algorithm/COS
2022. 2. 25. 12:35