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 | 29 | 30 |
Tags
- 코테
- 구현
- Stack
- implement
- Number Theory
- database
- greedy
- array
- string
- 파이썬
- Data Structure
- 코딩테스트
- two pointers
- hash table
- sorting
- simulation
- bit manipulation
- dynamic programming
- Binary Search
- SQL
- Binary Tree
- Tree
- Class
- Matrix
- Counting
- java
- Method
- 자바
- Math
- geometry
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 507. Perfect Number 본문
1. Input
1) 정수 n
2. Output
1) n이 완전수라면 true, 아니면 false 반환
2) 완전수란 자기 자신을 제외한 양의 약수들의 합이 자신과 같은 수를 말한다.
3. Constraint
1) 1 <= num <= 10^8
4. Example
Input: n=28 -> Output: true
설명: 28을 제외한 28의 양의 약수는 1, 2, 4, 7, 14이고, 이 수들의 합은 28이므로 28은 완전수다.
5. Code
1) 첫 코드(2022/07/24)
if(num==1)
return false;
int sum = 1;
int n = num;
for(int i=2 ; i<n ; i++)
if(num%i==0){
n = num/i;
sum += n;
sum += i;
}
if(sum==num)
return true;
else
return false;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 520. Detect Capital (0) | 2022.12.02 |
---|---|
[LeetCode/Easy] 509. Fibonacci Number (0) | 2022.12.01 |
[LeetCode/Easy] 14. Longest Common Prefix (0) | 2022.11.30 |
[LeetCode/Easy] 504. Base 7 (0) | 2022.11.30 |
[LeetCode/Easy] 500. Keyboard Row (0) | 2022.11.30 |