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
- Matrix
- sorting
- dynamic programming
- Math
- Binary Search
- two pointers
- Tree
- simulation
- 코테
- Number Theory
- 코딩테스트
- database
- 자바
- 파이썬
- Method
- geometry
- array
- bit manipulation
- hash table
- java
- implement
- Binary Tree
- 구현
- Class
- Data Structure
- Stack
- greedy
- Counting
- SQL
- string
Archives
- Today
- Total
코린이의 소소한 공부노트
[백준 온라인 저지] 11653. 소인수분해 본문
1. 입력
- 첫째 줄에 정수 N (1 ≤ N ≤ 10,000,000)이 주어진다.
2. 출력
- N의 소인수분해 결과를 한 줄에 하나씩 오름차순으로 출력한다. N이 1인 경우 아무것도 출력하지 않는다.
3. 예제
4. 코드
import java.util.*;
import java.io.*;
class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
int n = Integer.valueOf(br.readLine()), i = 0;
ArrayList<Integer> list = prime(n);
while(i<list.size() && n>1){
while(n%list.get(i)==0){
bw.write(list.get(i)+"\n");
n /= list.get(i);
}
i++;
}
if(n>1)
bw.write(n+"\n");
bw.flush();
bw.close();
}
static ArrayList<Integer> prime(int n){
ArrayList<Integer> ans = new ArrayList<>();
for(int i=2 ; i<=Math.sqrt(n) ; i++){
boolean check = true;
for(int j=2 ; j<=Math.sqrt(i) && check; j++)
if(i%j==0)
check = false;
if(check)
ans.add(i);
}
return ans;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 387. First Unique Character in a String (0) | 2023.05.18 |
---|---|
[LeetCode/Easy] 349. Intersection of Two Arrays (0) | 2023.05.18 |
[LeetCode/Easy] 206. Reverse Linked List (0) | 2023.05.15 |
[LeetCode/Easy] 169. Majority Element (0) | 2023.05.13 |
[LeetCode/Easy] 145. Binary Tree Postorder Traversal (0) | 2023.05.12 |