일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- ScrollToPlugin
- 연습문제
- 초연결사회의 데이터통신과 네트워킹
- ArrayList
- 함수
- scrolly
- 백준
- 네트워킹
- 스크롤
- 자바
- 단어장
- JLPT
- 일본어
- prettier-code formatter
- gsap
- 이벤트
- html
- java
- JavaScript
- reactjs code snippets
- Algorithm
- 자바스크립트
- 라이브러리
- Node.js
- React
- Today
- Total
목록algorithm/백준 (91)
umilove98의 블로그
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..
1 2 3 4 5 6 7 8 9 10 11 12 13 14 import java.io.*; import java.math.BigInteger; public class Q2338 { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); BigInteger a = new BigInteger(bf.readLine()); BigInteger b = new BigInteger(bf.readLine()); System.out.println(a.add(b)); System.out.println(a.subtract(b)); System..
import java.io.*; public class Q1550 { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); String hex = bf.readLine(); int decimal = Integer.parseInt(hex,16); System.out.println(decimal); } }