| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- SWEA
- binary search
- 시뮬레이션
- 이분탐색
- DP
- greedy
- COS PRO
- 러닝일지
- 프로그래머스
- priorityqueue
- MySQL
- BFS
- 문제해결
- db
- math
- 코테
- 건강
- Java
- dfs
- 투포인터
- BOJ
- 문자열
- 운동기록
- 백준
- SQL
- oracle
- 알고리즘
- 문제풀이
- 자바
- 코딩테스트
- Today
- Total
목록Java (469)
슈콩
[문제]https://www.acmicpc.net/problem/2003 [소스 코드]import java.io.*;import java.util.*;public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); int n = Integer.parseInt(st.nextToken()); int m = Integer.parseInt(st.nextToken()); int[] nums = ..
[문제]https://www.acmicpc.net/problem/21921 [소스 코드]import java.io.*;import java.util.*;public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); int n = Integer.parseInt(st.nextToken()); int x = Integer.parseInt(st.nextToken()); int[] visito..
[문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWcPjEuKAFgDFAU4 SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com [소스 코드]import java.util.*;import java.io.*;public class Solution { public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st..
[문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AXxNn6GaPW4DFASZ SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com [소스 코드]import java.util.*;import java.io.*;public class Solution { static int n,result; static int[] days; public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStrea..
[문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV14_DEKAJcCFAYD [소스 코드]import java.util.*;import java.io.*;public class Solution { public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st; for(int tc=1;tc dq = new LinkedList(); for(int i=0;i
[문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWgv9va6HnkDFAW0 SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com [소스 코드]import java.util.*;import java.io.*;public class Solution { static int resultA,resultB; static int[] a = new int[9]; static int[] b = new int[9]; static boolean[] card; public static void main(String[] args) throws..
[문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV14P0c6AAUCFAYi SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com [소스 코드]import java.util.*;import java.io.*;public class Solution { public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); for(int tc=1;tc
[문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWBJAVpqrzQDFAWr SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com [소스 코드]import java.util.*;import java.io.*;public class Solution { public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st..
단위 별로 시작점 존재하지 않음 -> 앞에서 부터 시도 가능, 뒤쪽 부터 코드 찾기 가능 (2가지) [문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV15FZuqAL4CFAYD SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com [소스 코드]import java.util.*;import java.io.*;public class Solution { static HashMap hm; public static void main(String[] args) throws IOException{ BufferedReader b..
[문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AXaSUPYqPYMDFASQ SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com [소스 코드]import java.util.*;import java.io.*;public class Solution { static int n; static char[][] map; static int[] dr = {1,1,1,0}; static int[] dc = {-1,0,1,1}; public static void main(String[] args) throws IOException{ ..