| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- 문제풀이
- SQL
- oracle
- dfs
- 프로그래머스
- DP
- 코테
- COS PRO
- Java
- 문자열
- greedy
- binary search
- 문제해결
- BFS
- BOJ
- math
- db
- 시뮬레이션
- 알고리즘
- priorityqueue
- 자바
- 투포인터
- 코딩테스트
- 운동기록
- MySQL
- 이분탐색
- 건강
- 러닝일지
- Today
- Total
목록Java (469)
슈콩
[문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV7GLXqKAWYDFAXB 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/86491#qna 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코드]class Solution { public int solution(int[][] sizes) { int answer = 0; int row = 0; int col = 0; for(int i=0;i
[문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV7GKs06AU0DFAXB SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com [소스 코드]import java.util.*;import java.io.*;public class Solution { static int n,result; static int[] queen; public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStre..
[문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV139KOaABgCFAYh 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=AWT-lPB6dHUDFAVT SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com [소스 코드]import java.util.*;import java.io.*;public class Solution { static int n,l,result; static int[] score,cal; public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new Inp..
[문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV15Khn6AN0CFAYD SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com [소스 코드]import java.util.*;import java.io.*;public class Solution { static int max,result = 0; static char[] nums; public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new Inp..
[문제]https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV134DPqAA8CFAYh SW Expert AcademySW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!swexpertacademy.com [소스 코드]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; ..
[문제]https://school.programmers.co.kr/learn/courses/30/lessons/87389#qna 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코그]class Solution { public int solution(int n){ int answer = 0; for(int x = 1;x
[문제]https://school.programmers.co.kr/learn/courses/30/lessons/12954 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [소스 코드]class Solution { public long[] solution(int x, int n) { long[] answer = new long[n]; long val = x; for(int i=0;i