250x250
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
- 원서읽자
- 코딩테스트
- sw expert academy
- 코테 대비
- 프로그래머스
- swexpertacademy
- 알고리즘 문제
- the midnight library
- 직무면접
- 원서
- englishbook
- 삼성
- 원서읽기
- 코테 준비
- 알고리즘
- BFS
- MySQL
- dfs
- PyQt
- 쉬운 알고리즘 문제
- STUDYENGLISH
- SQL
- D4
- English
- nightroutine
- 백준
- sw expert
- 완전탐색
- 코테
- readingbook
Archives
- Today
- Total
시나브로
[백준] 2231번 분해합 본문
728x90
완전탐색으로 1부터 n까지의 모든 숫자를 탐색하였다.
각 자리의 합은 나머지와 나눗셈으로 구현하였다.
#include<stdio.h>
#include<vector>
#include<iostream>
#include <algorithm>
using namespace std;
int main(void) {
freopen("inp.inp", "r", stdin);
freopen("out.out", "w", stdout);
long long n;
scanf("%lld", &n);
long long box = 0;
long long same = 0;
for (long long i = 1; i <= n; i++) {
box = i;
same = i;
for (;;) {
box += same % 10;
if (same < 10)
break;
same /= 10;
}
if (n == box) {
printf("%lld", i);
return;
}
}
printf("0");
return 0;
}
https://www.acmicpc.net/problem/2231
728x90
'알고리즘 > 백준' 카테고리의 다른 글
8393 합 (0) | 2020.01.09 |
---|---|
[백준] 체스판 다시 칠하기 (0) | 2019.12.31 |
[백준] 7568번 덩치 (0) | 2019.12.31 |
[백준] 2798 번 블랙잭 (0) | 2019.12.31 |
[ 백준 ] 14500번 테트로미노 _ 완전 탐색 (0) | 2019.12.30 |
Comments