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
- 한빛아카데미
- quizlet
- 함수
- 알고리즘
- Node.js
- 라이브러리
- ArrayList
- 스크롤
- java
- 단어장
- prettier-code formatter
- ScrollToPlugin
- gsap
- reactjs code snippets
- 백준
- 초연결사회의 데이터통신과 네트워킹
- 데이터통신
- 이벤트
- html
- Algorithm
- JLPT
- 초연결 사회의 데이터통신과 네트워킹
- 자바스크립트
- 일본어
- 네트워킹
- 자바
- JavaScript
- 연습문제
- React
- scrolly
Archives
- Today
- Total
umilove98의 블로그
백준 20254 Java 본문
반응형
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
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 ur = Integer.parseInt(st.nextToken());
int tr = Integer.parseInt(st.nextToken());
int uo = Integer.parseInt(st.nextToken());
int to = Integer.parseInt(st.nextToken());
System.out.println(56*ur + 24*tr + 14*uo + 6*to);
}
}
반응형
'algorithm > 백준' 카테고리의 다른 글
백준 21300 Java (0) | 2021.07.18 |
---|---|
백준 20492 Java (0) | 2021.07.18 |
백준 18301 Java (0) | 2021.07.18 |
백준 17496 Java (0) | 2021.07.18 |
백준 Java 제출시 컴파일 에러 (0) | 2021.07.18 |