일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ScrollToPlugin
- 라이브러리
- JavaScript
- React
- 한빛아카데미
- 스크롤
- gsap
- 연습문제
- 네트워킹
- reactjs code snippets
- 단어장
- JLPT
- html
- ArrayList
- 초연결사회의 데이터통신과 네트워킹
- scrolly
- 자바스크립트
- 초연결 사회의 데이터통신과 네트워킹
- 이벤트
- quizlet
- java
- 함수
- 일본어
- Node.js
- 자바
- 알고리즘
- 데이터통신
- 백준
- Algorithm
- prettier-code formatter
- Today
- Total
목록자바 (46)
umilove98의 블로그
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 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.Collections; import java.util.StringTokenizer; public class Q2693 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamRea..
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 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Q5532 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int l = Integer.parseInt(br.readLine()); int a = Integer.parseInt(br.readLine());..
숫자를 받고 high 면 high 리스트에 숫자 저장 low면 low리스트에 숫자 저장 right on이 나오면 정답 숫자 저장 high 리스트의 모든 값들과 정답 숫자를 비교해서 하나라도 정답보다 작거나 같은 값이 있는지 확인 통과되면 low리스트의 모든 값들과 정답 숫자를 비교해서 하나라도 정답보다 크거나 같은값이 있는지 확인 통과되면 Stan may be honest 출력 중간에 걸리면 Stan is dishonest 출력 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 ..
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 32 33 34 35 36 37 38 39 40 41 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; public class Q3711 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = ..
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 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Q2455 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int people = 0; int max = 0; for(int i = 0; ..
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 32 33 34 35 36 37 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Q2435 { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenize..