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 |
31 |
Tags
- 연습문제
- java
- ai select
- 네트워킹
- Algorithm
- 스크롤
- html
- quizlet
- 초연결 사회의 데이터통신과 네트워킹
- JavaScript
- 알고리즘
- vpn 에러
- 한빛아카데미
- gsap
- React
- 라이브러리
- JLPT
- 함수
- 단어장
- pulsesecure
- 이벤트
- 갤럭시북5
- 자바스크립트
- Node.js
- 데이터통신
- pulsesecurevpn
- 백준
- 자바
- ArrayList
- 일본어
Archives
- Today
- Total
목록algorithm (91)
umilove98의 블로그

public static void main(String[] args) throws IOException { Scanner sc = new Scanner(System.in); BigInteger n = sc.nextBigInteger(); // 총 금액 입력 BigInteger m = sc.nextBigInteger(); // 생명체 수 입력 BigInteger dividend = n.divide(m);// 생명체 당 배당금 BigInteger change = n.remainder(m);// 나머지 System.out.println(dividend); System.out.println(change); }
algorithm/백준
2021. 7. 17. 19:38