삐까냥의 파도타기
문제 출처 : https://www.acmicpc.net/problem/14891 자잘한 실수 발생;이상하게 자바가 버벅거리고 넘나 느려서 미치겄네요. 2018년 4월 7일 - 다듬지 않은 코드 (소요시간 1시간 8분) public class Q14891 { static int[][] gear = new int[4][8];public static void main(String[] args) {Scanner sc = new Scanner(System.in);for (int i = 0; i < 4; i++) {String temp = sc.nextLine();int[] tempGear = new int[8];for (int j = 0; j < 8; j++) {char tempChar = temp.charAt..
문제 출처 : https://www.acmicpc.net/problem/14888 DFS죠?? 2018년 4월 6일 - 다듬지 않은 시험용 코드 (소요시간 : 29분) public class Q14888 {static int max = 0, min = 0;static int maxCount;static int[] operator, values;static boolean isFirst = true;public static void main(String[] args) {Scanner sc = new Scanner(System.in);int size = sc.nextInt();values = new int[size];for (int i = 0; i < size; i++) {values[i] = sc.nextI..
문제 출처 : https://www.acmicpc.net/problem/14503 굉장히 쉬울것이라 생각했는데, 시간 좀 걸렸습니다.어려운 부분 : 명시된 로봇청소기 알고리즘 제대로 이해하기. 2018년 4월 6일 - 다듬지 않은 시험 코드 (소요시간 : 1시간 32분) package samsung; import java.util.Scanner; public class Q14503 { public static void main(String[] args) {Scanner sc = new Scanner(System.in);int ySize = sc.nextInt();int xSize = sc.nextInt();int[][] map = new int[ySize][xSize];int nowY = sc.nextI..