BOJ 문제풀이

백준 2231 c++ 풀이

koreasunoo 2021. 7. 31. 12:32
SMALL

안녕하세요 오늘은 브루트 포스를 이용한 문제풀이를 하겠습니다.

 

코드:

#include <bits/stdc++.h>
#include <string>

using namespace std;

int main(){
	ios::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);

	int N;
	cin>>N;
	if(N<10 and N%2==1){
	
		cout<<"0"<<endl;
		exit(0);
	}
	for(int i= 1; i<N; i++){
		int sum = i;
		int contrast = i;
		int x = i;
		stringstream temp;
		temp<<i;
		string a = temp.str();
		int si = a.size();
		for(int j = 0; j<si; j++){
			sum += x%10;
			x /=10;
			if(x ==0){
				break;
			}
		}
		if(sum==N){
			cout<<contrast<<endl;
			exit(0);
		}

	}
	cout<<"0"<<endl;
}
LIST

'BOJ 문제풀이' 카테고리의 다른 글

백준 3009번 c++ 풀이  (0) 2021.08.01
백준 1085번 c++ 풀이  (0) 2021.08.01
백준 2798 c++ 풀이  (0) 2021.07.31
백준 9020 c++ 풀이  (0) 2021.07.31
백준 4948 c++ 풀이  (0) 2021.07.31