#include <iostream>
#include <math.h>
using namespace std;
int findnum(int x) {
int num = x;
int ans = 100, count = 99;
while (ans <= num) {
int hundred = ans / 100;
int ten = ans % 100 / 10;
int one = ans % 100 % 10;
if ((ten * 2) == (hundred + one))
count++;
ans++;
}
return count;
}
int main(void) {
int num;
cin >> num;
if (num >= 100)
num = findnum(num);
cout << num;
}
'백준 알고리즘 > 브루트포스' 카테고리의 다른 글
백준 14502번 C++ (0) | 2019.04.09 |
---|---|
백준 1018번 C++ (0) | 2019.02.04 |
백준 14889번 C++ (0) | 2019.01.28 |
백준 14888번 C++ (0) | 2019.01.28 |
백준 14500번 C++ (0) | 2019.01.27 |