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