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
- 연습문제
- 스크롤
- 알고리즘
- 자바
- 한빛아카데미
- 초연결 사회의 데이터통신과 네트워킹
- Node.js
- 이벤트
- scrolly
- React
- 라이브러리
- 데이터통신
- prettier-code formatter
- 백준
- 일본어
- ScrollToPlugin
- java
- 함수
- JLPT
- gsap
- Algorithm
- 자바스크립트
- html
- ArrayList
- 단어장
- 초연결사회의 데이터통신과 네트워킹
- JavaScript
- quizlet
- reactjs code snippets
- 네트워킹
Archives
- Today
- Total
목록algorithm/백준 (91)
umilove98의 블로그
백준 1271 Java
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