일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 백준 알고리즘
- DFS
- java
- 안드로이드 AdapterView
- 깊이우선탐색
- 안드로이드
- SQLite와 Realm 차이점
- 안드로이드 파일
- 컬렉션
- 소수 알고리즘
- Github
- 안드로이드 DBMS
- support 라이브러리
- android support
- support fragment
- 알고리즘
- 소수
- anr
- application not responding
- android fragment
- 자료구조
- 백준
- android adapterview
- oracle
- db
- 자바 컬렉션
- BFS
- 안드로이드 ANR
- 너비우선탐색
- 액티비티 ANR
Archives
- Today
- Total
밍의 기록들😉
[수학] 소수 판별하기
소수(Prime Number)약수가 1과 자기 자신 밖에 없는 수N이 소수가 되려면, 2보다 크거나 같고, N-1보다 작거나 같은 자연수로 나누어 떨어지면 안된다.N의 약수 중에서 가장 큰 것은 N/2보다 작거나 같기 때문이다.N = a x b로 나타낼 수 있는데, a가 작을수록 b는 크다.가능한 a중에서 가장 작은 값은 2이기 때문에 b는 N/2를 넘지 않는다.코드private static boolean prime(int n) { if(n
자료구조, 알고리즘/기본다지기
2018. 8. 16. 20:31
[문제] 분수 합 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