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