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
- using value
- SAP
- java
- ALV Output Setting
- ZPL
- Dictionary Search Help
- changing value
- cfieldname
- Data Browser
- boole_d
- APPENDING CORRESPONDING
- Union-Find
- READ TABLE
- FOR ALL ENTRIES IN
- DP - 무한배낭(순서)
- ABAP
- qfieldname
- 필드카탈로그
- MONAT_F4
- DP - 유한배낭
- CTS #CTS 이관 #SAP #ABAP
- DP - 무한배낭
- APPENDING
- NEW-PAGE PRINT ON
- transporting
- SM36
- 날짜 계산 함수
- batch job
- SAP GUI
- BOJ_Gold
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