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 | 29 | 30 | 31 |
Tags
- aws
- 운영체제
- retry
- SQL
- Kafka
- 오라클
- Spring Cloud
- 데이터베이스
- Intellj
- 코딩
- 클라우드
- 디자인 패턴
- 자료구조
- 알고리즘
- PL/SQL
- feign
- 페이징
- Spring Boot
- golang
- 자바
- Spring Cloud Feign
- 백준
- DP
- Spring
- JPA
- 쿼리
- db
- MVC
- MST
- Jenkins
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