We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prime Number 수학적인 코테 문제가 나왔을 때 굉장히 빈번하게 출제되는 유형입니다. 1과 자신 외에 약수가 존재하지 않는 수를 말합니다. 대부분 코딩테스트에선 에라토스테네스의 체 원리로 구하게 됩니다.
O(n log log n)
이중 for문을 사용하기에 O(n²) 일거 같지만, 배수를 삭제하는 과정에서 생략되는 반복이 빈번하기 때문에 확 줄어듭니다. 이 복잡도는 대략적으로 이해하기 위해 O(n) 보다는 조금 더 빠르지만 O(nlogn) 보다는 느린 것으로 볼 수 있습니다.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
소수 구하기
Prime Number
수학적인 코테 문제가 나왔을 때 굉장히 빈번하게 출제되는 유형입니다.
1과 자신 외에 약수가 존재하지 않는 수를 말합니다.
대부분 코딩테스트에선 에라토스테네스의 체 원리로 구하게 됩니다.
시간복잡도
O(n log log n)
방법
에라토스테네스의 체
The text was updated successfully, but these errors were encountered: