반응형
250x250
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
- 브루트포스 알고리즘
- 이분 탐색
- 시뮬레이션
- 해시를 사용한 집합과 맵
- 실패함수
- 연결리스트 중복제거
- LeetCode 83번
- 다이나믹 프로그래밍
- KMP알고리즘
- 정수론
- 스택
- 문자열제곱
- 사칙연산
- LeetCode 83 c언어
- LeetCode Remove Duplicates from Sorted List in c
- 연결리스트 정렬
- 임의 정밀도 / 큰 수 연산
- 유클리드 호제법
- 프로그래머스
- 큰 수 연산
- 재귀
- 문자열
- 별 찍기
- 자료 구조
- 수학
- 정렬
- 큐
- 조합론
- 구현
- Queue
Archives
- Today
- Total
hahn
단계별로 풀어보기(정수론 및 조합론 - 다리 놓기) 본문
728x90
반응형
http://boj.kr/612939ad94b94939a0464368b751d80e
더보기
import java.util.Scanner;
class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int testCaseCount = sc.nextInt(),
leftCombination, rightCombination, divide;
long result, store;
for(int i = 0; i < testCaseCount; i++){
rightCombination = sc.nextInt();
leftCombination = sc.nextInt();
divide = 1;
result = 1;
for(int j = leftCombination; j > leftCombination - rightCombination; j--){
result *= j;
if(rightCombination >= divide) {
store = result % divide;
result /= divide;
result += store;
divide++;
}
}
while(rightCombination >= divide) {
store = result % divide;
result /= divide;
result += store;
divide++;
}
System.out.println(result);
}
}
}
조합 구하는 문제
수가 너무 커져서 long으로 감당이 안 돼서
나누고 몫 더해주는 거 반복함.
728x90
반응형
'코딩테스트 연습 > 백준(JAVA)' 카테고리의 다른 글
[백준 - JAVA] 나누기 (0) | 2021.09.14 |
---|---|
[백준 - JAVA] 명령 프롬프트 (0) | 2021.09.14 |
[백준 - JAVA] 분산처리 (0) | 2021.09.14 |
[백준 - JAVA] 막대기 (0) | 2021.09.14 |
단계별로 풀어보기(브루트 포스 - 영화감독 숌) (0) | 2021.09.14 |