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 |
Tags
- Union-Find
- changing value
- transporting
- qfieldname
- DP - 유한배낭
- Dictionary Search Help
- cfieldname
- APPENDING CORRESPONDING
- java
- MONAT_F4
- READ TABLE
- CTS #CTS 이관 #SAP #ABAP
- FOR ALL ENTRIES IN
- SAP
- batch job
- NEW-PAGE PRINT ON
- SAP GUI
- ZPL
- Data Browser
- BOJ_Gold
- using value
- 필드카탈로그
- SM36
- DP - 무한배낭(순서)
- boole_d
- ALV Output Setting
- 날짜 계산 함수
- APPENDING
- DP - 무한배낭
- ABAP
Archives
- Today
- Total
목록java (2)
Jin's Library
[Gold Ⅳ] 5427 - 불
package BOJ.Gold;import java.io.BufferedReader;import java.io.InputStreamReader;import java.util.LinkedList;import java.util.Queue;import java.util.StringTokenizer;// 골드 4 불// BFSpublic class BOJ_5427 { static int M,N,answer; static char[][] map; static int[] dx = {0, -1, 0, 1}; static int[] dy = {-1, 0, 1, 0}; static Queue Q; static Queue Fire; static void BFS(){ int..
Algorithm - Java/BOJ - Gold
2025. 9. 29. 23:09
[Gold Ⅴ] 1011 - Fly me to the Alpha Centauri
import java.io.BufferedReader;import java.io.InputStreamReader;import java.util.StringTokenizer;public class BOJ_1011 { public static void main(String[] args) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringBuilder sb = new StringBuilder(); int N = Integer.parseInt(br.readLine()); for(int i=0;i= acc){// ..
Algorithm - Java/BOJ - Gold
2025. 9. 26. 16:52