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