| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 시뮬레이션
- Java
- oracle
- 러닝일지
- COS PRO
- SQL
- 프로그래머스
- BFS
- 문제풀이
- 백준
- 알고리즘
- 운동기록
- DP
- 문제해결
- MySQL
- db
- 자바
- 건강
- binary search
- 코테
- greedy
- 투포인터
- priorityqueue
- 문자열
- math
- BOJ
- SWEA
- 이분탐색
- 코딩테스트
- dfs
- Today
- Total
목록2025/10/02 (2)
슈콩
[문제] [소스 코드]import java.io.*;import java.util.*;public class Main { 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[] room = new int[n]; st = new StringTokenizer(br.readLine()); for(int i=0;i0) { result += divide / c; if(divide%c > 0)..
[문제]https://www.acmicpc.net/problem/3190 [소스 코드]import java.io.*;import java.util.*;public class Main { static int[] dr = {0,1,0,-1}; static int[] dc = {1,0,-1,0}; 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+1][n+1]; ..