Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- dynamic programming
- 자료구조
- JS
- scss
- java
- computed
- 프로그래머스
- 파이썬
- greedy
- CSS
- hash table
- Algorithm
- JavaScript
- vue.js
- sorting
- github
- 변수
- array
- 백준
- Python
- math
- leetcode
- JavaSceipt
- SasS
- HTML
- 컴포넌트
- string
- 알고리즘
- 자료형
- 코딩테스트
Archives
- Today
- Total
Posis
[프로그래머스] 합성수 찾기 본문
문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/120846
문제 설명
약수의 개수가 세 개 이상인 수를 합성수라고 합니다. 자연수 n이 매개변수로 주어질 때 n이하의 합성수의 개수를 return하도록 solution 함수를 완성해주세요.
제한사항
- 1 ≤ n ≤ 100
입출력 예
n | result |
10 | 5 |
15 | 8 |
입출력 예 설명
입출력 예 #1
- 10 이하 합성수는 4, 6, 8, 9, 10 로 5개입니다. 따라서 5를 return합니다.
입출력 예 #1
- 15 이하 합성수는 4, 6, 8, 9, 10, 12, 14, 15 로 8개입니다. 따라서 8을 return합니다.
나의 풀이
Java
class Solution {
public int solution(int n) {
int answer = 0;
for(int i = 1; i <= n; i++) {
int count = 0;
for(int j = 1; j <= n; j++) {
if(i%j == 0) count++;
if(count > 2) {
answer++;
break;
}
}
}
return answer;
}
}
JavaScript
function solution(n) {
let answer = 0;
for(let i = 1; i <= n; i++) {
let count = 0;
for(let j = 1; j <= n; j++) {
if(i%j == 0) count++;
if(count > 2) {
answer++;
break;
}
}
}
return answer;
}
728x90
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] A로 B만들기 (0) | 2022.12.06 |
---|---|
[프로그래머스] 중복된 문자 제거 (0) | 2022.12.06 |
[프로그래머스] 369게임 (0) | 2022.12.05 |
[프로그래머스] 문자열 정렬하기 (2) (0) | 2022.12.05 |
[프로그래머스] 숫자 찾기 (0) | 2022.12.05 |