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
- SAP CERTIFICATION
- 이분탐색
- Altorithm
- LinkdeList
- 너비우선탐색
- 정렬
- 자료구조
- SAP CERTI
- CJ올리브네트웍스
- datastructure
- Baekjoon
- kakao
- 프로그래머스
- ABAP NetWeaver 7.50
- 동적계획벅
- 백준
- programmers
- sap abap
- binarysearch
- DynamicProgramminng
- sort
- kakaoblind
- 최종합격후기
- 분할정복
- DivideandConquer
- Algorithm
- ABAP CERTIFICATION
- insertion
- codingTest
- 알고리즘
Archives
- Today
- Total
목록백준 (1)
서랑의 개발 블로그
[백준/C++] 1300번 - K번째 수
문제 링크 :https://www.acmicpc.net/problem/1300 1300번: K번째 수 세준이는 크기가 N×N인 배열 A를 만들었다. 배열에 들어있는 수 A[i][j] = i×j 이다. 이 수를 일차원 배열 B에 넣으면 B의 크기는 N×N이 된다. B를 오름차순 정렬했을 때, B[k]를 구해보자. 배열 A와 B www.acmicpc.net 풀이 https://cocoon1787.tistory.com/292 [C/C++] 백준 1300번 - K번째 수 (이분 탐색) #include #include #include using namespace std; long long N, K; long long Low, High, Mid; long long cnt; long long count(long lo..
코테 대비/백준
2021. 8. 10. 17:14