일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- support fragment
- 안드로이드 ANR
- 알고리즘
- 안드로이드 AdapterView
- application not responding
- SQLite와 Realm 차이점
- 소수 알고리즘
- 컬렉션
- 안드로이드
- android support
- DFS
- 백준
- BFS
- 자료구조
- 안드로이드 DBMS
- support 라이브러리
- 안드로이드 파일
- db
- 너비우선탐색
- anr
- 자바 컬렉션
- oracle
- 깊이우선탐색
- 백준 알고리즘
- android fragment
- 액티비티 ANR
- android adapterview
- Github
- java
- 소수
Archives
- Today
- Total
목록백준 (3)
밍의 기록들😉
[수학] 소인수분해
소인수분해정수 N을 소수의 곱으로 분해소수를 구하지 않고 해결 가능N을 소인수분해 했을 때, 나타날 수 있는 인수 중에서 가장 큰 값은 루트 N따라서 2부터 루트 N까지 나눌 수 없을 때까지 계속해서 나누면 됨코드 for(int i=2; i*i1){ System.out.println(n); }
자료구조, 알고리즘/기본다지기
2018. 8. 16. 22:15
[문제] 분수 합 1735번
https://www.acmicpc.net/problem/1735 public class FractionSum { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int a_n = scan.nextInt(); int a_d = scan.nextInt(); int b_n = scan.nextInt(); int b_d = scan.nextInt(); int d = a_d * b_d; a_n = a_n * b_d; b_n = b_n *a_d; int n = a_n +b_n; int gcd_num = gcd(n,d); n = n/gcd_num; d = d/gcd_num; System.out.println(n +" "+..
자료구조, 알고리즘/문제풀이
2018. 8. 16. 20:11