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
- onLayout
- 백준
- Android
- hilt
- activity
- AppBarLayout
- HTTP
- Coroutine
- lifecycle
- recyclerview
- LiveData
- 알림
- notification
- DataBinding
- Algorithm
- ViewModel
- room
- onMeasure
- kotlin
- CollapsingToolbarLayout
- sqlite
- View
- Navigation
- Behavior
- BOJ
- CustomView
- CoordinatorLayout
- 안드로이드
- 알고리즘
- 코틀린
Archives
- Today
- Total
목록Fermat's little theorem (1)
개발일지
Algorithm - Fermat's little theorem(페르마의 소정리)
개념 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