| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- APPENDING CORRESPONDING
- using value
- MONAT_F4
- DP - 유한배낭
- ZPL
- CTS #CTS 이관 #SAP #ABAP
- FOR ALL ENTRIES IN
- cfieldname
- NEW-PAGE PRINT ON
- APPENDING
- Union-Find
- Dictionary Search Help
- boole_d
- transporting
- BOJ_Gold
- qfieldname
- ALV Output Setting
- java
- SAP GUI
- 날짜 계산 함수
- DP - 무한배낭(순서)
- batch job
- DP - 무한배낭
- SM36
- changing value
- 필드카탈로그
- READ TABLE
- Data Browser
- SAP
- ABAP
- Today
- Total
목록Algorithm - Java/BOJ - Gold (16)
Jin's Library
import java.io.BufferedReader;import java.io.InputStreamReader;import java.util.StringTokenizer;public class BOJ_15486 { public static void main(String[] args) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readLine()); StringTokenizer st; int[] day = new int[N]; int[] value = new in..
import java.io.BufferedReader;import java.io.InputStreamReader;import java.util.Arrays;import java.util.StringTokenizer;public class BOJ_12865 { public static void main(String[] args) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); int N = Integer.parseInt(st.nextToken())..
import java.io.BufferedReader;import java.io.InputStreamReader;import java.util.StringTokenizer;public class BOJ_2293 { public static void main(String[] args) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); int N = Integer.parseInt(st.nextToken()); int target = In..
import java.io.BufferedReader;import java.io.InputStreamReader;import java.util.StringTokenizer;import java.util.Arrays;public class BOJ_1931 { public static void main(String[] args) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readLine()); int s = 0, e = 0, cnt = 0, last = 0; int[][] meetin..
import java.io.BufferedReader;import java.io.InputStreamReader;import java.util.StringTokenizer;public class BOJ_1043 { static int[] parent; static int find(int x){ if(parent[x] == x) return x; return parent[x] = find(parent[x]); } static void union(int a, int b){ a = find(a); b = find(b); if(a != b) parent[b] = a; } public static void mai..