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

using System; using System.Linq; class Program { static int n; static int result = 1; static void Input() { n = int.Parse(Console.ReadLine()); } static void Solution() { int[][] meeting_time = new int[n][]; for (int i = 0; i < n; i++) { var input = Console.ReadLine().Split(); int[] copy = new int[2]; copy[0] = int.Parse(input[0]); copy[1] = int.Parse(input[1]); meeting_time[i] = copy; } // 가변배열 ..
백준/1000 ~
2023. 7. 26. 21:27