일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 라이브러리
- 이벤트
- 초연결 사회의 데이터통신과 네트워킹
- 네트워킹
- JLPT
- Algorithm
- 알고리즘
- Node.js
- 초연결사회의 데이터통신과 네트워킹
- 자바
- ArrayList
- gsap
- 일본어
- 연습문제
- 함수
- 스크롤
- quizlet
- React
- html
- 자바스크립트
- 단어장
- 한빛아카데미
- java
- prettier-code formatter
- scrolly
- reactjs code snippets
- 백준
- JavaScript
- ScrollToPlugin
- 데이터통신
- Today
- Total
목록algorithm/백준 (91)
umilove98의 블로그
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Q15727 { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); int l = Integer.parseInt(bf.readLine()); int t = 0; if (l%5 == 0) { t = l/5; }else { t = l/5 +1; } System.out.println(t); } }
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Q15439 { public static void main(String[] args) throws NumberFormatException, IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); int inp = Integer.parseInt(bf.readLine()); int out = inp * (inp-1); System.out.println(out); } }
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.re..
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.StringTokenizer; public class Q14652 { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); String s = bf.readLine(); StringTokenizer st = new StringTokenizer(s); int n = Integer.parseInt(st.nextToken()); in..
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Q11654 { public static void main(String[] args) throws IOException { BufferedReader bf = new BufferedReader(new InputStreamReader(System.in)); int i = bf.readLine().charAt(0); System.out.println(i); } }