Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- c#
- Tostring 사용법
- C# Find
- C# Contains
- 네트워크
- List 추가
- InsertRange
- 서브넷
- List 제거
- 서브넷 마스크
- 네트워크 용어
- BFS
- 기본 게이트웨이
- TCP/IP
- 알고리즘
- 호스트 주소
- list
- 호스트
- List 정렬
- Parse 사용법
- Visual Studio
- OSI 3계층
- 백준
- c# list
- list 사용법
- IP주소
- DP
- AddRange
- C++
- List 찾기
Archives
- Today
- Total
CodeLabs
[백준 / C#] 1463 : 1로 만들기 본문
using System;
class Program
{
static int n = int.Parse(Console.ReadLine());
static int[] result = new int[1000001];
static void Main(string[] args)
{
result[1] = 0;
for(int i=2; i<=n; i++)
{
result[i] = result[i - 1] + 1;
if (i % 2 == 0) result[i] = Math.Min(result[i], result[i / 2] + 1);
if (i % 3 == 0) result[i] = Math.Min(result[i], result[i / 3] + 1);
}
Console.WriteLine(result[n]);
}
}
'백준 > 1000 ~' 카테고리의 다른 글
[백준 / C++] 1620 : 나는야 포켓몬 마스터 이다솜 (0) | 2023.07.15 |
---|---|
[백준 / C#] 1541 : 잃어버린 괄호 (0) | 2023.07.13 |
[백준 / C#] 1260 : DFS와 BFS (0) | 2023.07.09 |
[백준 / C#] 1012 : 유기농 배추 (0) | 2023.07.06 |
[백준 / C#] 1003 : 피보나치 함수 (0) | 2023.07.03 |