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

using System; using System.Collections.Generic; using System.Linq; namespace _2178 { class Pair { public Pair(int first_, int second_) { first = first_; second = second_; } public int second { get; set; } public int first { get; set; } } class Program { static int n, m; static int[] dx = { 0, 1, 0, -1 }, dy = { -1, 0, 1, 0 }; static int[,] check = new int[100, 100]; static string[] input = new s..
백준/1000 ~
2023. 7. 28. 22:23