Algorithm/Design Paradigm
2019. 7. 25.
[BOJ] 2231번 분해합
브루트포스 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 #include 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; } h..