| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- MySQL
- 코딩테스트
- SWEA
- 자바
- DP
- 문제해결
- 투포인터
- 시뮬레이션
- 문제풀이
- 알고리즘
- SQL
- greedy
- priorityqueue
- dfs
- 러닝일지
- BFS
- 코테
- BOJ
- 운동기록
- 프로그래머스
- COS PRO
- Java
- 문자열
- 백준
- 이분탐색
- db
- binary search
- oracle
- 건강
- math
- Today
- Total
목록전체 글 (534)
슈콩
[문제]https://www.acmicpc.net/problem/14891 [소스 코드]import java.io.*;import java.util.*;public class Main { static int[][] gear; public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st; gear = new int[5][8]; for(int i=1;i
[문제]https://www.acmicpc.net/problem/14890 [소스 코드]import java.io.*;import java.util.*;public class Main { static int n,l; static int[][] map; public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); n = Integer.parseInt(st.nextToken()); l = Integer.parseInt(st.n..
[문제]https://www.acmicpc.net/problem/14889 [소스 코드]import java.io.*;import java.util.*;public class Main { static int n,result; static boolean[] visit; static int[][] team; public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st; n = Integer.parseInt(br.readLine()); team = new int[n][n]; for(int i=..
[문제]https://www.acmicpc.net/problem/14888 [소스 코드]import java.io.*;import java.util.*;public class Main { static int max,min; static int[] nums; public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st; int n = Integer.parseInt(br.readLine()); st = new StringTokenizer(br.readLine()); nums = new int..
[문제]https://www.acmicpc.net/workbook/view/1152 [소스 코드]import java.io.*;import java.util.*;public class Main { static int n,m,result; static int[][] map; 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.readLi..
[Python 사용] 라이브러리: pyserial 목표 각도/속도 설정 및 위치 피드백 처리 제어 프로그램 통신 프로토콜(패킷)을 디버깅하면서 구조를 분석 및 이해→ 이번 학습을 통해 로봇 제어와 통신 프로토콜의 연관성을 파악
[문제]https://www.acmicpc.net/problem/14501 [소스 코드]import java.io.*;import java.util.*;public class Main { 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[] t = new int[n+1]; int[] p = new int[n+1]; for(int i=1;i=1;i--) { if(i+t[i]-1>n) dp[i]..
[문제]https://www.acmicpc.net/problem/14500 [소스 코드]import java.io.*;import java.util.*;public class Main { static int n,m,result; static int[][] map; static boolean[][] visit; static int[] dr = {0,0,-1,1}; static int[] dc = {1,-1,0,0}; public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new Stri..
[문제]https://www.acmicpc.net/problem/14499 [소스 코드]import java.io.*;import java.util.*;public class Main { static int[] dr = {0,0,0,-1,1}; static int[] dc = {0,1,-1,0,0}; static int[] dice = new int[6]; public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine()); int ..
[문제]https://www.acmicpc.net/problem/13458 [소스 코드]import java.io.*;import java.util.*;public class Main { 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[] A = new int[n]; st = new StringTokenizer(br.readLine()); for(int i=0;i=c) { result +..