| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- priorityqueue
- DP
- 프로그래머스
- 문자열
- oracle
- 자바
- db
- COS PRO
- 백준
- BOJ
- 투포인터
- greedy
- dfs
- binary search
- math
- 운동기록
- 건강
- 시뮬레이션
- 알고리즘
- 문제해결
- 코테
- 러닝일지
- SWEA
- 문제풀이
- Java
- 이분탐색
- 코딩테스트
- SQL
- MySQL
- BFS
- Today
- Total
목록2026/01/22 (2)
슈콩
[문제]https://www.acmicpc.net/problem/2644 [소스 코드]import java.util.*;import java.io.*;public class Solution { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st; int n = Integer.parseInt(br.readLine()); st = new StringTokenizer(br.readLine()); int x = Integer.parseInt(st.nextToken()); int ..
[문제]https://www.acmicpc.net/problem/2667 [소스 코드]import java.util.*;import java.io.*;public class Solution { static int[] dr = {-1,1,0,0}; static int[] dc = {0,0,-1,1}; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st; int n = Integer.parseInt(br.readLine()); int[][] map = new int[n][n]; ..