코딩테스트 문제 풀이/[백준] 브루트 포스(5)
-
C# 1436번 영화감독 숌
코드 : using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _5 { class Program { static void Main(string[] args) { int N = Convert.ToInt32(Console.ReadLine()); int count = 1; int defaultValue = 666; while (N > count) { if (defaultValue.ToString().Contains("666")) { count += 1; } defaultValue += 1; } Console.WriteLine(defaultV..
2022.01.10 -
C# 1018번 체스판 다시 칠하기
코드 : using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _4 { class Program { static void Main(string[] args) { string input = Console.ReadLine(); string[] inputData = input.Split(' '); int N = Convert.ToInt32(inputData[0]); int M = Convert.ToInt32(inputData[1]); string[,] board = new string[N, M]; string[,] Chess = new st..
2022.01.10 -
C# 7568번 덩치
코드 : using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _3 { class Program { static void Main(string[] args) { int N = Convert.ToInt32(Console.ReadLine()); int[] h = new int[N]; int[] w = new int[N]; StringBuilder sb = new StringBuilder(); for (int i = 0; i < N; i++) { string input = Console.ReadLine(); string[] inputdata..
2022.01.10 -
C# 2231번 분해합
코드 : using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _2 { class Program { static void Main(string[] args) { string N = Console.ReadLine(); int num = 1; int constructor = 0; while(Convert.ToInt32(N) > num) { constructor = num; for (int i = 0; i < num.ToString().Length; i++) { constructor += Convert.ToInt32(num.ToString(..
2022.01.10 -
C# 2798번 블랙잭
코드 : using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _1 { class Program { static void Main(string[] args) { string input = Console.ReadLine(); string second = Console.ReadLine(); string[] inputdata = input.Split(' '); int N = Convert.ToInt32(inputdata[0]); int M = Convert.ToInt32(inputdata[1]); string[] secondData = se..
2022.01.10