일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 네트워킹
- 라이브러리
- java
- prettier-code formatter
- JavaScript
- 백준
- quizlet
- 함수
- 단어장
- ArrayList
- Algorithm
- 한빛아카데미
- 자바스크립트
- 초연결사회의 데이터통신과 네트워킹
- 이벤트
- React
- html
- ScrollToPlugin
- 자바
- 스크롤
- 일본어
- Node.js
- JLPT
- 알고리즘
- reactjs code snippets
- 연습문제
- gsap
- 데이터통신
- 초연결 사회의 데이터통신과 네트워킹
- scrolly
- Today
- Total
목록분류 전체보기 (135)
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..