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 |
Tags
- Algorithm
- AppBarLayout
- DataBinding
- Coroutine
- onLayout
- ViewModel
- onMeasure
- LiveData
- activity
- CoordinatorLayout
- 코틀린
- 안드로이드
- room
- CollapsingToolbarLayout
- Behavior
- notification
- 백준
- Navigation
- CustomView
- HTTP
- sqlite
- recyclerview
- Android
- kotlin
- View
- hilt
- 알고리즘
- BOJ
- 알림
- lifecycle
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