Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- BOJ
- C++
- inflearn
- 열혈 TCP/IP 소켓 프로그래밍
- 에러핸들링
- 제프리리처
- redis
- 스프링 핵심 원리
- 2475번
- TCP/IP
- OS
- Window-Via-c/c++
- Four Squares
- Spring
- Operating System.
- C#
- 운영체제
- Operating System
- 스프링 입문
- FIFO paging
- 김영한
- 10026번
- 토마토
- 이펙티브코틀린
- 열혈 tcp/ip 프로그래밍
- 우아한 테크 세미나
- HTTP
- 윤성우 저자
- 우아한레디스
- n타일링2
Archives
- Today
- Total
나의 브을로오그으
[c++] 2231번 : 분해합 본문
https://www.acmicpc.net/problem/2231
#include <iostream>
#include <vector>
using namespace std;
int GetDicompose(int n)
{
int decompose = n;
while (n > 0)
{
decompose += n % 10;
n /= 10;
}
return decompose;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
int N = 0;
int result = 0;
cin >> N;
for (int i = 1; i < N; ++i)
{
int index = GetDicompose(i);
if (index == N)
{
result = i;
break;
}
}
cout << result << '\n';
return 0;
}
'알고리즘 > BaekJoon' 카테고리의 다른 글
[c++] 2609번 : 최대공약수, 최소공배수 (0) | 2022.04.27 |
---|---|
[c++] 2292번 : 벌집 (0) | 2022.04.15 |
[c++] 2164번 : 카드2 (0) | 2022.04.15 |
[c++] 2108번 : 통계학 (0) | 2022.04.13 |
[c++] 1978번 : 소수 찾기 (0) | 2022.03.30 |