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

using System; using System.Collections.Generic; using System.Linq; struct Locate { public int location, time; public Locate(int location,int time) { this.location = location; this.time = time; } } class Program { static int[] N_K = Console.ReadLine().Split().Select(int.Parse).ToArray(); static int n = N_K[0], k = N_K[1]; static bool[] visited = new bool[100001]; static Queue lot = new Queue(); s..
백준/1000 ~
2023. 7. 18. 18:42