Link : https://www.acmicpc.net/problem/1065
소스 결과 : 1984 KB / 0 ms
출처 : BackJoon
설명
생각보다 쉬운 문제
일단 범위가 자연수 한정에 1000 이하 이지만
실질적으로 1 ~ 99 까지는 무조건 등차수열이고
1000은 등차수열이 아니니 100 ~ 999 까지만 계산하면 되는 문제였다.
소스코드
#include <iostream>
using namespace std;
int main()
{
int n;
int count = 0;
cin >> n;
if (n == 1000) // 1000 is not arithmetic sequence
n = 999;
if (n < 100) // under 100 is arithmetic sequence
count = n;
else
{
count = 99;
for (int i = 100; i < n + 1; i++)
{
int number = i;
int digit[3];
int j = 0;
while (number)
{
digit[j++] = number % 10;
number /= 10;
}
if (digit[0] - digit[1] == digit[1] - digit[2])
count++;
}
}
cout << count;
return 0;
}
'Algorithm > Brute Force' 카테고리의 다른 글
BaekJoon 1107 리모컨 (0) | 2019.01.15 |
---|---|
BaekJoon 14888 연산자 끼워넣기 (0) | 2019.01.15 |
BaekJoon 1213 팰린드롬 만들기 (0) | 2019.01.10 |
BaekJoon 15683 감시 (0) | 2019.01.09 |
BaekJoon 7568 덩치 (0) | 2018.12.27 |