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

문제 코드 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..
Algorithm
2022. 4. 15. 14:33