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
- 갤럭시북5
- JLPT
- 자바
- 한빛아카데미
- ArrayList
- Algorithm
- JavaScript
- 단어장
- pulsesecurevpn
- Node.js
- gsap
- quizlet
- 일본어
- java
- 초연결 사회의 데이터통신과 네트워킹
- 알고리즘
- 자바스크립트
- 연습문제
- 함수
- html
- 네트워킹
- 이벤트
- pulsesecure
- React
- 백준
- ai select
- 데이터통신
- vpn 에러
- 스크롤
- 라이브러리
Archives
- Today
- Total
umilove98의 블로그
백준 14928 Java 본문
반응형
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.math.BigInteger;
public class Q14928 {
public static void main(String[] args) throws IOException {
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
BigInteger inp = new BigInteger(bf.readLine());
BigInteger birth = new BigInteger("20000303");
System.out.println(inp.remainder(birth));
}
}
반응형
'algorithm > 백준' 카테고리의 다른 글
백준 15727 Java (0) | 2021.07.18 |
---|---|
백준 15439 Java (0) | 2021.07.18 |
백준 14652 Java (0) | 2021.07.18 |
백준 11654 Java (0) | 2021.07.17 |
백준 10430 Python (0) | 2021.07.17 |