일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 프로그래머스
- 2차원배열
- springboot
- 코딩테스트
- css
- 로그인
- sql
- html
- 리눅스
- 싱글톤
- springSecurity
- 시큐리티
- StyleSheet
- JAVA11
- 스프링 부트
- 시큐리티 로그아웃
- 시큐리티로그인
- codingtest
- 목록
- Spring boot
- programmers
- security
- input태그
- 반복문
- Linux
- javascript
- 소스트리
- 시큐리티 로그인
- gradle
- java
Archives
- Today
- Total
목록BigInteger (1)
JAVAIARY
프로그래머스 ) 구슬을 나누는 경우의 수
문제: https://school.programmers.co.kr/learn/courses/30/lessons/120840 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr import java.math.BigInteger; class Solution { public BigInteger solution(int intBalls, int intShare) { // balls! / ((balls-share)! * share!) String strBalls = Integer.toString(intBalls); String strShare = Integer.toStr..
examplePractice
2023. 4. 8. 18:16