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
- 백준
- DFS와BFS
- AndroidStudio
- 분할정복
- DFS
- vuejs
- django
- 코테
- 파이썬
- Flutter
- Algorithm
- codingtest
- Python
- Vue
- 알고리즘
- issue
- 개발
- 동적계획법과최단거리역추적
- cos pro 1급
- 안드로이드
- android
- cos
- BAEKJOON
- C++
- 코딩테스트
- cos pro
- 동적계획법
- DART
- 코드품앗이
- 안드로이드스튜디오
Archives
- Today
- Total
Development Artist
[COS Pro 1급, Python] 2차 3번 : 경품 당첨자를 구해주세요 본문
728x90
반응형
문제 유형
빈칸
난이도
easy
Note
1. 문제를 빠르게 이해할 것. 차례대로 읽지 말고 문제를 적당히 읽고 예시를 본다.
Code
# -*- coding: utf-8 -*-
# UTF-8 encoding when using korean
# 2차 3번
def func_a(n):
ret = 1
while n > 0:
ret *= 10
n -= 1
return ret
def func_b(n):
ret = 0
while n > 0:
ret += 1
n //= 10
return ret
def func_c(n):
ret = 0
while n > 0:
ret += n%10
n //= 10
return ret
def solution(num):
next_num = num
while True:
next_num += 1
length = func_b(next_num)
if length % 2:
continue
divisor = func_a(length//2)
front = next_num // divisor
back = next_num % divisor
front_sum = func_c(front)
back_sum = func_c(back)
if front_sum == back_sum:
break
return next_num - num
num1 = 1
ret1 = solution(num1)
print("solution 함수의 반환 값은", ret1, "입니다.")
num2 = 235386
ret2 = solution(num2)
print("solution 함수의 반환 값은", ret2, "입니다.")
※ 가끔 코드 중 print(~)가 있습니다. 정리 못한 점 죄송합니다.
728x90
반응형
'Algorithm > COS' 카테고리의 다른 글
[COS Pro 1급, Python] 2차 5번 : 언제까지 오르막길이야..?! (0) | 2022.02.25 |
---|---|
[COS Pro 1급, Python] 2차 4번 : 합이 k 배가 되는 수 (0) | 2022.02.25 |
[COS Pro 1급, Python] 2차 2번 : 지하철 기다리기 (0) | 2022.02.25 |
[COS Pro 1급, Python] 2차 1번 : 도서 대여점 운영 (0) | 2022.02.25 |
[COS Pro 1급, Python] 1차 10번 : 주식으로 최대 수익을 내세요 (0) | 2022.02.24 |
Comments