일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- support 라이브러리
- 깊이우선탐색
- 안드로이드 ANR
- 자료구조
- 컬렉션
- Github
- 소수 알고리즘
- java
- 안드로이드 AdapterView
- 너비우선탐색
- SQLite와 Realm 차이점
- 백준
- BFS
- 안드로이드
- application not responding
- DFS
- anr
- 안드로이드 파일
- 안드로이드 DBMS
- 백준 알고리즘
- 자바 컬렉션
- 알고리즘
- android support
- 액티비티 ANR
- oracle
- android adapterview
- db
- android fragment
- 소수
- support fragment
Archives
- Today
- Total
목록수분할 (1)
밍의 기록들😉
문제 소스코드 import java.util.Scanner; public class Division2 { private static int N; private static int cnt = 0; static int[] array = new int[20]; public static void main(String[] args) { Scanner sc = new Scanner(System.in); N = sc.nextInt(); division(N, 0, 0); System.out.println(cnt); } private static void division(int n, int sum, int index) { for(int x=n; x>0; x--){ if(index==0){ // 처음 시작 숫자 array..
자료구조, 알고리즘/문제풀이
2018. 9. 4. 00:07