일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- html
- 일본어
- 백준
- 함수
- 알고리즘
- pulsesecure
- 네트워킹
- pulsesecurevpn
- java
- JavaScript
- ArrayList
- 스크롤
- 데이터통신
- quizlet
- vpn 에러
- JLPT
- 한빛아카데미
- Algorithm
- 자바
- Node.js
- 이벤트
- 자바스크립트
- 라이브러리
- ai select
- 연습문제
- 초연결 사회의 데이터통신과 네트워킹
- React
- gsap
- 단어장
- 갤럭시북5
- 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); } }