| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- SQL
- math
- 문제풀이
- 문자열
- MySQL
- SWEA
- 이분탐색
- oracle
- 백준
- Java
- 건강
- 투포인터
- 러닝일지
- priorityqueue
- 시뮬레이션
- greedy
- DP
- dfs
- BFS
- db
- 자바
- 코테
- 프로그래머스
- 코딩테스트
- 알고리즘
- COS PRO
- 운동기록
- binary search
- BOJ
- 문제해결
- Today
- Total
목록Java (469)
슈콩
[문제]http://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV14uWl6AF0CFAYD 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://school.programmers.co.kr/learn/courses/30/lessons/12928 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코드]class Solution { public int solution(int n) { int answer = 0; for(int i=1;i
[문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWQmA4uK8ygDFAXj SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com [소스 코드]import java.util.*;import java.io.*;public class Solution { static int[] dr = {-1,-1,0,1,1,1,0,-1}; static int[] dc = {0,1,1,1,0,-1,-1,-1}; public static void main(String[] args) throws IOException{ BufferedReade..
[문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5LsaaqDzYDFAXc 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=AV14Rq5aABUCFAYi SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com [소스 코드]import java.util.*;import java.io.*;public class Solution { static char[][] map; public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in))..
[문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV13_BWKACUCFAYh 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=AV7GOPPaAeMDFAXB SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com [소스 코드]import java.util.*;import java.io.*;public class Solution { static int n,result; static boolean[][] edge; static boolean[] visit; public static void main(String[] args) throws IOException{ BufferedReader br = new..
[문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV7IzvG6EksDFAXB SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com [소스 코드] // 1차 코드import java.util.*;import java.io.*;public class Solution { static int n,k,result; static int[] arr; public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new I..
[문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV14hwZqABsCFAYD 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=AV14QpAaAAwCFAYi SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com [소스 코드]import java.util.*;import java.io.*;public class Solution { static int n; static char[][] map; public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamRea..