Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Spring Boot
- 백트래킹
- Spring Data JPA
- 스프링
- 오일러프로젝트
- 클라우드
- Kafka
- 코드업
- gcp
- aws
- DFS
- 스프링부트
- 클라우드 컴퓨팅
- 스프링 부트
- 로드밸런서
- Docker
- Elasticsearch
- 월미도
- VPC
- 카프카
- Spring
- 백준
- JPA
- 프로그래밍문제
- 알고리즘
- Apache Kafka
- 쿠버네티스
- springboot
- 자료구조
- 인천여행
Archives
- Today
- Total
목록동혁피자 (1)
GW LABS
[Backjoon] 동혁 피자
수학문제로 원 안에 내접할 수 있는 사각형에 대한 문제였다. 사각형의 대각선을 구해서 원의 지름과 비교하면 간단하게 풀이가 가능하다. #include #include #include using namespace std; int main() { int index = 1; while (true) { int r, w, l; cin >> r; if (r == 0) break; cin >> w >> l; double diagonal = sqrt(w*w + l*l); if (2*r >= diagonal) { cout
Algorithm & DataStructure/Problems
2021. 6. 6. 09:28