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
- 백준16937
- 백준 타일코드
- 두 개의 배열
- 백준1802
- Frog River One
- BaseCallbackHandler
- generateChangeLog
- 백준 시간초과
- 백준3078 풀이
- 백준20126
- 백준3078
- liquibse
- streaming chat
- export changeLog
- 교수님의 기말고사풀이
- Codility
- 백준11332
- LangChain
- 백준 도서관
- java
- 백준17124
- 외판원순회
- 두 스티커
- 백준
- 백준1461
- streamlit
- 백준1720
- ChatOpenAI
- 백준2098
- 백준13417
Archives
- Today
- Total
목록FrogJmp (1)
tempcru 삽질기록
Codility - Frog Jmp 풀이 (java)
문제 https://app.codility.com/programmers/lessons/3-time_complexity/frog_jmp/ FrogJmp coding task - Learn to Code - Codility Count minimal number of jumps from position X to Y. app.codility.com 몇번 점프하면 Y보다 같거나 크게 점프 뛸 수 있을까? 접근방법 X = 출발점 Y = 도착점 D = 1회당 점프 길이 Y - X 한다음에 D로 나누면 몫이 나온다 같거나 크게 점프 뛰어야하므로 Y % D가 0이 아닌 경우라면 1번 더 뛰어야 Y보다 커지도록했다 풀이 public class FrogJmp { public static void main(String[] a..
Coding Test/Codility
2022. 1. 5. 14:33