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
- 라이브러리
- reactjs code snippets
- prettier-code formatter
- 이벤트
- ArrayList
- 초연결사회의 데이터통신과 네트워킹
- ScrollToPlugin
- Algorithm
- 일본어
- 함수
- 한빛아카데미
- 자바스크립트
- html
- 데이터통신
- 초연결 사회의 데이터통신과 네트워킹
- java
- 연습문제
- 네트워킹
- JavaScript
- 스크롤
- quizlet
- scrolly
- React
- Node.js
- 백준
- 단어장
- 자바
- gsap
- JLPT
- 알고리즘
Archives
- Today
- Total
umilove98의 블로그
백준 3046 Java 본문
반응형
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Q3046 {
public static void main(String[] args) throws IOException {
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
String inp = bf.readLine();
StringTokenizer st = new StringTokenizer(inp);
int r1 = Integer.parseInt(st.nextToken());
int s = Integer.parseInt(st.nextToken());
int result = 2*s-r1;
System.out.println(result);
}
}
반응형
'algorithm > 백준' 카테고리의 다른 글
백준 5554 Java (0) | 2021.07.17 |
---|---|
백준 5522 Java (0) | 2021.07.17 |
백준 3003 Java (0) | 2021.07.17 |
백준 2914 Java (0) | 2021.07.17 |
백준 2845 Java (0) | 2021.07.17 |