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 |
Tags
- express
- Unity IAP
- Camera Zoom
- Google Developer API
- mongoDB
- docker
- critical rendering path
- spread 연산자
- Camera Movement
- springboot
- screencapture
- unity
- nodejs
- Packet Network
- rpg server
- --watch
- linux
- css framework
- Digital Ocean
- draganddrop
- SDK upgrade
- Spring Boot
- OverTheWire
- Google Refund
- MySQL
- Unity Editor
- react
- server
- Git
- java
Archives
- Today
- Total
목록2025/02/13 (1)
우당탕탕 개발일지
[프로그래머스] Level 2. 두 원 사이의 정수쌍
https://school.programmers.co.kr/learn/courses/30/lessons/181187 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 해결 방법제 1사분면에서, 두 원사이 점의 개수를 찾고, x4를 한다. 축에 있는 것들이 중복검사되면 안되기때문에, x =1 일때부터 x = r2 일때까지의 1사분면 점만 구한다.작은 원을 기준으로 할 때, 아래 조건을 만족하는 가장 작은 y1을 찾는다. $$ x^2 +y^2 >= r1^2 $$큰 원을 기준으로 할 때, 아래 조건을 만족하는 가장 큰 y2를 찾는다 $$ x^2 + y^2 y1 #include #include #include ..
Algorithm(c++)/Level 2
2025. 2. 13. 10:38