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