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
- 백준
- 연습문제
- 데이터통신
- 이벤트
- Algorithm
- 알고리즘
- React
- html
- 자바스크립트
- 한빛아카데미
- prettier-code formatter
- Node.js
- 스크롤
- 초연결 사회의 데이터통신과 네트워킹
- 라이브러리
- reactjs code snippets
- 단어장
- quizlet
- gsap
- ArrayList
- 네트워킹
- 함수
- 초연결사회의 데이터통신과 네트워킹
- scrolly
- java
- JavaScript
- 자바
- ScrollToPlugin
- 일본어
- JLPT
Archives
- Today
- Total
umilove98의 블로그
백준 3003 Java 본문
반응형
import java.io.*;
import java.util.*;
public class Q3003 {
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);
ArrayList<Integer> chess = new ArrayList<Integer>();
for (int i = 0; i < 6; i++) {
chess.add(Integer.parseInt(st.nextToken()));
}
ArrayList<Integer> stdchess = new ArrayList<Integer>(Arrays.asList(1,1,2,2,2,8)); //체스말의 기본 갯수
for (int i = 0; i < 6; i++) {
int result;
result = stdchess.get(i) - chess.get(i);
System.out.print(result+" ");
}
}
}
반응형
'algorithm > 백준' 카테고리의 다른 글
백준 5522 Java (0) | 2021.07.17 |
---|---|
백준 3046 Java (0) | 2021.07.17 |
백준 2914 Java (0) | 2021.07.17 |
백준 2845 Java (0) | 2021.07.17 |
백준 2475 Java (0) | 2021.07.17 |