본문 바로가기

Algorithm/Design Paradigm

[BOJ] 2231번 분해합

브루트포스

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <bits/stdc++.h>
using namespace std;
 
int main() {
    int inp;
    scanf("%d"&inp);
    int chk = inp;
    int res = 0;
    while (1) {
        chk--;
        int sum = chk % 10 + chk / 10 % 10 + chk / 100 % 10 + chk / 1000 % 10 + chk / 10000 % 10 + chk / 100000 % 10 + chk / 1000000 % 10;
        if (chk + sum == inp)
            res = chk;
        if (inp - 65 == chk)
            break;
    }
    printf("%d", res);
    return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs
14113464 zl0siwon0lz 2231 맞았습니다!! 1988KB 0ms C++14 / 수정 381B 1일 전