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
- dynamic programming
- Tree
- two pointers
- Number Theory
- string
- simulation
- Data Structure
- 코테
- Math
- database
- hash table
- Class
- 코딩테스트
- 구현
- geometry
- 파이썬
- sorting
- java
- Binary Search
- 자바
- SQL
- Method
- Counting
- array
- Matrix
- bit manipulation
- implement
- greedy
- Stack
- Binary Tree
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2485. Find the Pivot Integer 본문
1. Input
1) int n
2. Output
1) n에 대한 pivot integer를 찾아서 반환
- pivot integer란 1부터 x까지의 합이 x부터 n까지의 합과 같게 되는 x를 말한다.
2) pivot integer가 없다면 -1을 반환
3. Constraint
1) 1 <= n <= 1000
4. Example
Input: n = 8 -> Output: 6
설명: 1 + 2 + 3 + 4 + 5 + 6 = 6 + 7 + 8 = 21
5. Code
1) 첫 코드(2023/05/04)
class Solution {
public int pivotInteger(int n) {
int total = n*(n+1)/2, answer = -1;
for(int i=1 ; i<=n && answer==-1 ; i++){
int sum = i*(i+1)/2;
if(sum == total-sum+i)
answer = i;
}
return answer;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 옹알이 (1) (0) | 2023.05.04 |
---|---|
[프로그래머스/Lv.0] 그림 확대 (0) | 2023.05.04 |
[LeetCode/Easy] 2481. Minimum Cuts to Divide a Circle (0) | 2023.05.04 |
[LeetCode/Easy] 2475. Number of Unequal Triplets in Array (0) | 2023.05.04 |
[LeetCode/Easy] 2469. Convert the Temperature (0) | 2023.05.04 |