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 | 31 |
Tags
- 기본 게이트웨이
- List 제거
- DP
- Parse 사용법
- Tostring 사용법
- 서브넷
- OSI 3계층
- 알고리즘
- InsertRange
- 호스트
- C# Contains
- c#
- List 정렬
- IP주소
- List 추가
- 네트워크 용어
- List 찾기
- 네트워크
- TCP/IP
- 호스트 주소
- 백준
- C++
- list
- AddRange
- BFS
- 서브넷 마스크
- list 사용법
- C# Find
- c# list
- Visual Studio
Archives
- Today
- Total
목록2023/07/03 (1)
CodeLabs

using System; class Program { static int t = int.Parse(Console.ReadLine()); static long[] dp = new long[100]; static long Fibo(int n) { dp[0] = 0; dp[1] = 1; for (int i = 2; i 0) { int n = int.Parse(Console.ReadLine()); Fibo(n); if (n == 0) Console.WriteLine("1 0"); else Console.Write($"{dp[n-1]} {dp[n]}\n"); } } }
백준/1000 ~
2023. 7. 3. 18:30