반응형
문제
어떤 양의 정수 X의 각 자리가 등차수열을 이룬다면, 그 수를 한수라고 한다. 등차수열은 연속된 두 개의 수의 차이가 일정한 수열을 말한다. N이 주어졌을 때, 1보다 크거나 같고, N보다 작거나 같은 한수의 개수를 출력하는 프로그램을 작성하시오.
입력
첫째 줄에 1,000보다 작거나 같은 자연수 N이 주어진다.
출력
첫째 줄에 1보다 크거나 같고, N보다 작거나 같은 한수의 개수를 출력한다.
#include <iostream>
#include<vector>
#include <algorithm>
#include<cmath>
#include<string>
#include<queue>
#include<map>
using namespace std;
int hans(int N)
{
int cnt = 0;
for (int i = 1; i <= N; i++)
{
bool flag = true;
string num = to_string(i);
int tmp = 987654321;
for (int j = 1; j < num.size(); j++)
{
if (tmp == 987654321)
{
tmp = num[j] - num[j - 1];
}
else
{
if (tmp != num[j] - num[j - 1])
{
flag = false;
break;
}
}
}
if (flag)
cnt++;
}
return cnt;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL); cout.tie(NULL);
int N;
cin >> N;
cout << hans(N) << endl;
}
Java
public static void main(String[] args) {
SpringApplication.run(CodingApplication.class, args);
{
Scanner scan = new Scanner(System.in);
int N = scan.nextInt();
int cnt = 0;
for(int i = 1; i <= N; i++)
{
String num = Integer.toString(i);
boolean flag = true;
int temp = 987654321;
for(int j = 1; j < num.length(); j++)
{
if(temp == 987654321)
{
temp = num.charAt(j) - num.charAt(j-1);
}
else
{
if(temp != num.charAt(j) - num.charAt(j-1))
{
flag = false;
break;
}
}
}
if(flag)
cnt++;
}
System.out.println(cnt);
}
}
반응형
'Algorithm' 카테고리의 다른 글
[함수 단계] 백준 4673번 셀프 넘버 (0) | 2020.10.14 |
---|---|
[함수 단계] 백준 15596번 정수 N개의 합 (0) | 2020.10.14 |
프로그래머스 lv3 디스크 컨트롤러 (java) (0) | 2020.10.13 |
[최소 공통 조상 단계] 백준 17435번 합성함수와 쿼리 (0) | 2020.10.13 |
프로그래머스 lv3 2 x n 타일링 (java) (0) | 2020.10.12 |