Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- SQL
- 알고리즘
- 페이징
- PL/SQL
- aws
- 데이터베이스
- Intellj
- MST
- 오라클
- golang
- Jenkins
- MVC
- 디자인 패턴
- 클라우드
- Spring Cloud Feign
- 자바
- JPA
- retry
- Kafka
- Spring Cloud
- 운영체제
- DP
- feign
- Spring Boot
- 쿼리
- 코딩
- 자료구조
- 백준
- db
- Spring
Archives
- Today
- Total
목록14888 (1)
justgo_developer
[JAVA] 백준 14888 연산자 끼워넣기
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162import java.util.*;public class Main { static int N; static int[] number; static int[] op = new int[4]; static int min = Integer.MAX_VALUE; static int max = Integer.MIN_VALUE; public static void main(String[] args) { Scanner sc = new Scanner(System.in); N = sc.nextInt(); number = ne..
IT/코딩 문제 풀이
2018. 12. 1. 23:44