일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- C#
- 수성구맛집
- programmers
- 브루트 포스
- 대명동맛집
- 반복문
- 수성구데이트
- 조건문
- oracle
- 프로그래머스
- 큐
- 서울맛집
- 대구고깃집
- 대구데이트
- 정렬
- 앞산카페
- 대구카페
- 대구맛집
- 오라클
- 백준
- 압구정데이트
- BFS
- 수성못맛집
- 들안길삼겹살
- SQL
- 범어동맛집
- 안지랑카페
- 별찍기
- 대구삼겹살
- 수성못삼겹살
- Today
- Total
목록일상 집합소 (212)
모든 일상

using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string[] str = Console.ReadLine().Split(); int cnt = int.Parse(str[0]); int num = int.Parse(str[1]); int max = int.MinValue; int[] arr = Console.ReadLine().Split().Select(int.Parse).T..

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string str = Console.ReadLine(); int[] arr = new int[str.Length]; string result = ""; for(int i = 0; i

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { int num = int.Parse(Console.ReadLine()); int[] arr = new int[num]; int[] score = new int[8001]; // 절대값 4000 -> -4000 ~ 4000 까지 List list = new List(); int sum = 0; int min = int.MaxValue; int max = in..

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { /*int num = int.Parse(Console.ReadLine()); int[] arr = new int[num]; for(int i = 0; i

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string[] arr = Console.ReadLine().Split(); int num = int.Parse(arr[0]); int cut = int.Parse(arr[1]); string[] buff = Console.ReadLine().Split(); int[] score_arr = Array.ConvertAll(buff, s => int.Parse..

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { int[] arr = new int[5]; int avg = 0; for(int i = 0; i

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { string[,] arr = new string[9, 9]; int max = int.MinValue; // 처음에 0으로 했다가 틀렸습니다, 나와서 한참 찾았네요 ㅠㅠ int y_loc= 0, x_loc = 0; for (int i = 0; i

using System; using System.Collections; using System.Collections.Generic; namespace ConsoleApp3 { public class Program { static void Main(string[] args) { int size = int.Parse(Console.ReadLine()); int[,] value = new int[size, size]; int[,] visit = new int[size, size]; int[] dx = new int[4] { 1, 0, -1, 0 }; int[] dy = new int[4] { 0, 1, 0, -1 }; Queue q = new Queue(); // X,Y 축 위치 저장 Queue result ..