일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- quizlet
- 자바스크립트
- 네트워킹
- 일본어
- html
- 단어장
- prettier-code formatter
- 함수
- scrolly
- Node.js
- 자바
- 백준
- 알고리즘
- 이벤트
- 연습문제
- 한빛아카데미
- React
- 스크롤
- reactjs code snippets
- gsap
- JLPT
- 데이터통신
- ScrollToPlugin
- Algorithm
- JavaScript
- 라이브러리
- 초연결사회의 데이터통신과 네트워킹
- ArrayList
- 초연결 사회의 데이터통신과 네트워킹
- java
- Today
- Total
목록java (99)
umilove98의 블로그
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; public class Q5522 { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); ArrayList numbers = new ArrayList(); for(int i = 0; i < 5; i++) { numbers.add(Integer.parseInt(bf.readLine())); } int resu..
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Q3046 { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); String inp = bf.readLine(); StringTokenizer st = new StringTokenizer(inp); int r1 = Integer.parseInt(st.nextToken())..
import java.io.*; import java.util.*; public class Q3003 { 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); ArrayList chess = new ArrayList(); for (int i = 0; i < 6; i++) { chess.add(Integer.parseInt(st.nextToken())); } ArrayList stdchess = n..
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Q2914 { 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..
import java.io.*; import java.util.ArrayList; import java.util.StringTokenizer; public class Q2845 { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); String s = bf.readLine(); String a = bf.readLine(); StringTokenizer st = new StringTokenizer(s); StringTokenizer sk = new StringTokenizer(a); int l = Integer.parse..
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.StringTokenizer; public class Q2475 { public static void main(String[] args) throws IOException { int result = 0; BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); String s = bf.readLine(); StringTokenizer st = new StringTokenizer(s); A..