브루트포스
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일 전 |
'Algorithm > Design Paradigm' 카테고리의 다른 글
[BOJ] 1018번 체스판 다시 칠하기 (0) | 2019.07.25 |
---|---|
[BOJ] 7568번 덩치 (0) | 2019.07.25 |
[BOJ] 2798번 블랙잭 (0) | 2019.07.25 |
[BOJ] 1003번 피보나치 함수 (0) | 2018.07.31 |
KOI(한국정보올림피아드) 2015년 중등부2번 카드게임 (0) | 2018.07.26 |