- spring boot
- mysql
- join
- spring security 6
- @transactional
- AWS
- springboot
- nginx
- java
- jpa
- spring
- 프로그래머스
- sql
- SSL
- 스프링
- 스프링부트
- Docker
- 1차원 배열
- select
- 데이터베이스
- spring mvc
- PYTHON
- session
- Django
- 자바
- 문자열
- DI
- string
- Git
- ORM
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
목록java (38)
개발하는 자몽
문제 코드 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; 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(), " "); System.out.println(st.countTokens()); } }
문제 코드 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String input = br.readLine(); int cnt[] = new int[26]; for (byte inputs : input.getBytes()) { if (inputs >= 97) { cnt[inputs - 'a']++; } else { c..
문제 코드 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringBuilder sb = new StringBuilder(); int t = Integer.parseInt(br.readLine()); for (int i = 0; i < t; i++) { String[] str = br.readLine().split..
문제 코드 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String S = br.readLine(); int alphabet[] = new int[26]; for(int i=0; i< alphabet.length; i++){ alphabet[i] = -1; } for(int i=0; i
문제 코드 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); String numbers = br.readLine(); int sum = 0; for(int i=0; i
문제 코드 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); byte res = (byte) br.readLine().charAt(0); System.out.println(res); } }
문제 코드 import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { // 1. 한 자리 숫자는 한수로 정의 // 2. 두 자리 숫자는 모두 공차가 정해진 등차수열이므로 한수임 // 3. 세 자리 숫자는 공차를 계산해 등차수열인지 확인 필요 // 4. 입력값은 1000 이하의 숫자, 1000은 한수가 아니므로 세 자리 숫자가 등차수열인지 확인 BufferedReader br = new BufferedReader(new InputStreamReader(Syst..
문제 코드 public class Main { public static void main(String[] args) { boolean[] check = new boolean[10001]; // 1~10000 for (int i = 1; i
문제 코드 public class Test { long sum(int[] a) { long ans = 0; for(int i=0; i
문제 코드 import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.IOException; import java.util.StringTokenizer; public class Main{ public static void main(String[] args) throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringBuilder sb = new StringBuilder(); double sum = 0; double avg = 0; int outer = Integer.parseInt(br.readLine(..