일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 네트워킹
- java
- Algorithm
- 스크롤
- 초연결 사회의 데이터통신과 네트워킹
- quizlet
- 단어장
- Node.js
- JLPT
- 일본어
- ArrayList
- 함수
- 자바
- 라이브러리
- 자바스크립트
- reactjs code snippets
- 초연결사회의 데이터통신과 네트워킹
- html
- 알고리즘
- 연습문제
- ScrollToPlugin
- prettier-code formatter
- JavaScript
- scrolly
- 이벤트
- 한빛아카데미
- 데이터통신
- React
- 백준
- gsap
- Today
- Total
목록java (99)
umilove98의 블로그
ArrayList inputarr = new ArrayList(); inputarr.add(10); inputarr.add(20); inputarr.add(30); int first = inputarr.get(0);// 10 int last = inputarr.get(list.size() - 1);// 30
1 2 3 4 5 6 ArrayList inputarr = new ArrayList(); inputarr.add(10); inputarr.add(20); inputarr.add(30); int min = Collections.min(inputarr); // 10 int max = Collections.max(inputarr); // 30 cs
첫째 줄의 보드 크기 a,b를 입력을 받아서 해당 크기의 2차원 배열을 생성한다. 생성된 2차원 배열에 아래의 보드 내용을 입력한다. 8x8크기의 보드를 잘라내야 하므로 잘라내는 시작지점은 0,0부터 a-7, b-7까지가 된다. 각 시작 지점부터 8x8만큼을 비교하여 판단하는 함수 judgment를 만들어준다. 8x8만큼을 지정하여 비교해야 하므로 매개변수로 받은 n, m 부터 n+8, m+8까지 진행하며 비교한다. 좌측상단이 W로 시작하는 경우와 B로 시작하는 경우 두 가지가 존재하므로 stand변수를 두 개 만들어 비교하고 일치하지 않는 경우 cnt도 두 개 따로 카운트한다. 한 번의 8x8 순회에서 나온 두 개의 cnt 중 더 작은 값을 현재까지 나온 min 값과 비교하여 최소값을 min 에 저장한..
삼각형의 대각선길이 ^2 = 너비^2 + 높이^2 임을 이용하여 계산한다. import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Main { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); String s = bf.readLine(); StringTokenizer st = new StringTokenizer(s); int ..
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.math.BigInteger; public class Main { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); String s = bf.readLine(); BigInteger a = new BigInteger(bf.readLine()); BigInteger b = new BigInteger(bf.readLine()); Syst..
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Main { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); String s = bf.readLine(); StringTokenizer st = new StringTokenizer(s); int a = Integer.parseInt(st.nextToken()); int ..