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