https://www.acmicpc.net/problem/1065
전체 코드
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static public void Main(string[] args)
{
string getA = (Console.ReadLine());
//각리수의 숫자를 뽑아내서 배열에 저장 -> 차이를 비교해서 저장
//99까지는 어차피 한수니까 예외처리하자
Console.WriteLine(Aberration(getA));
Console.ReadKey();
}
static int Aberration(string d)
{
int count = 99;
int[] arrayA = new int[1001];
//예외처리
if (d.Length > 2 && d.Length < 5)
{
//100부터 입력숫자까지 한수계산
for (int e = 100; e <= int.Parse(d); e++)
{
string insA = e.ToString();
for (int i = 0; i < insA.Length; i++)
{
arrayA[i] = int.Parse(insA[i].ToString());
}
//3자리수 아니면 1000 이다. 3자리수일때만 처리하면 더 편할거다.
if(insA.Length != 4)
{
//커지는 등차수열 작아지는 등차수열 구분
if (arrayA[0] >= arrayA[1] && arrayA[1] >= arrayA[2])
{
if ((arrayA[0] - arrayA[1]) == (arrayA[1] - arrayA[2]))
{
count++;
}
}
if (arrayA[0] < arrayA[1] && arrayA[1] < arrayA[2])
{
if ((arrayA[1] - arrayA[0]) == (arrayA[2] - arrayA[1]))
{
count++;
}
}
}
}
return count;
}
return int.Parse(d);
}
}
}
'[백준] > C#' 카테고리의 다른 글
백준 1193번 분수찾기 [C#] (0) | 2023.08.05 |
---|---|
백준 1152번 단어의 개수 [C#] (0) | 2023.08.05 |
백준 1110번 더하기 사이클 [C#] (0) | 2023.08.05 |