Notice
Recent Posts
Link
Tags
- @transactional
- springboot
- 문자열
- AWS
- sql
- static
- java
- select
- Docker
- 자바
- spring
- Django
- join
- spring mvc
- spring boot
- hibernate
- nginx
- 스프링
- 1차원 배열
- ORM
- 스프링부트
- 데이터베이스
- DI
- spring security 6
- string
- SSL
- 프로그래머스
- PYTHON
- mysql
- jpa
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Archives
목록백준 2908번 (1)
개발하는 자몽

문제 코드 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(), " "); int a = Integer.parseInt(new StringBuilder(st.nex..
Algorithm
2022. 4. 19. 14:40