분류 전체보기151 백준 #2292 2023-08-16 https://www.acmicpc.net/board/view/121775 이분이 쓰신글을 참고해서 읽어보았는데 , 대단하단 생각을 하였네요,, 점점 값을 더해가는 식인데, 한 칸의 마지막값이 7,19,37,61,91이런식인걸 파악해서 계속 값을 누적하는식,,,! 36입력시 36 2023. 8. 16. 백준 #2720 2023-08-11 StringBuilder stringBuilder = new StringBuilder(); int count = int.Parse(Console.ReadLine()); int[] arr = new int[] {25,10,5,1}; //단위의 값 for(int i = 0; i 2023. 8. 11. 백준 #2563 2023-08-09 bool[,] arr = new bool[100,100]; string count = Console.ReadLine(); int result = 0; for(int i = 0; i 2023. 8. 9. 백준 #2738 2023-08-02 내가 바분건지 설명이 불친절한건지,,,,, 다른사람들은 아무튼 잘알아먹는갑다... 이게 제가 이해한 내용임당.. 그렇다면 이젠 쉽게 풀수이따.. StringBuilder stringBuilder = new StringBuilder(); //행열 개수 string[] count = Console.ReadLine().Split(); int row = int.Parse(count[0]); int col = int.Parse(count[1]); int[,] arr = new int[row,col]; //값 설정 for(int x = 0; x 2023. 8. 2. 이전 1 ··· 15 16 17 18 19 20 21 ··· 38 다음