programmers_점 찍기_java

2023. 5. 11. 14:22Algorithm/Programmers

728x90

https://school.programmers.co.kr/learn/courses/30/lessons/140107

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

class Solution {
   public long solution(int k, int d) {
        long answer = 0;

        for (int i = 0; i<= d; i += k){
            long y = equation(d, i); // x가 주어질때 최대 y값
            answer += Math.floor(y/k) + 1; // 고정된 x값에서 최대 y값 보다 작은 y값 (+1 : 0포함) 
        }

        return answer;
    }

    // 원의 방정식 y^2 + x^2 = d^2
    public long equation(int d, int x){
        return (long) Math.sqrt((long)Math.pow(d, 2) - (long)Math.pow(x, 2));
    }
}