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

using System; using System.Collections.Generic; namespace _2667 { class Program { static int n, cnt; static int[] dx = { 0, 1, 0, -1 }, dy = { -1, 0, 1, 0 }; //상하좌우 표현 static string[] input = new string[25]; static bool[,] vi = new bool[25, 25]; static List result = new List(); static void DFS(int i, int j) { vi[i, j] = true; cnt++; for(int k=0; k
백준/1000 ~
2023. 8. 7. 22:47