#include <iostream>
using namespace std;
bool hansoo(int i)
{
if (i < 100)
return true;
int a = i / 100;
int b = i / 10 % 10;
int c = i % 10;
if (a+c == 2*b)
{
return true;
}
return false;
}
int main(void)
{
int N = 0;
int count = 0;
cin >> N;
if (N>=1 and N<=1000) // Initial condition
{
for (int i=1; i<=N; i++)
{
if(hansoo(i))
count = count + 1;
}
cout << count << endl;
}
return 0;
}
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 1094번 막대기 (파이썬) (0) | 2022.03.11 |
---|---|
[백준] 1085번 직사각형에서 탈출 (파이썬) (0) | 2022.03.11 |
[백준] 1026번 보물 (파이썬) (0) | 2022.03.11 |
[백준] 1018번 체스판 다시 칠하기 (파이썬) (0) | 2022.03.11 |
[백준] 1008번 A/B (C++) (0) | 2022.03.11 |