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
- View
- onLayout
- LiveData
- notification
- room
- 백준
- CoordinatorLayout
- DataBinding
- kotlin
- Behavior
- onMeasure
- BOJ
- sqlite
- recyclerview
- Android
- 코틀린
- hilt
- activity
- 안드로이드
- Algorithm
- 알림
- 알고리즘
- CustomView
- ViewModel
- HTTP
- lifecycle
- Navigation
- Coroutine
- AppBarLayout
- CollapsingToolbarLayout
Archives
- Today
- Total
목록페르마의 소정리 (1)
개발일지
개념 If p is prime and a is an integer not divisible by p, then 문제 16134 조합 www.acmicpc.net/problem/16134 16134번: 조합 (Combination) \(\begin{pmatrix}N\\R\end{pmatrix}\)의 값을 1,000,000,007로 나눈 나머지를 출력하자! (단, 1,000,000,007은 소수이다) www.acmicpc.net 코드 #include using namespace std; constexpr long long MOD = 1000000007; long long pow(long long x, long long y) { long long result = 1L; while (y) { if (y & 1)..
Algorithm (알고리즘)
2020. 10. 8. 12:54