일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 컴포넌트
- 클래스형 컴포넌트
- React 시작하기
- Vue.js 입문
- 라이프사이클
- 정보처리기사
- 중첩 라우트
- router push
- 2021 정처기
- State
- 2021 정보처리기사
- React
- propsTypes
- 2021 정보처리기사 실기
- 함수형 컴포넌트
- vuex 새로고침
- 2021 정처기 실기
- vue.js
- vue 로그인
- router go
- Vue.js 시작하기
- Props
- 정처기
- router replace
- vue 히스토리 모드
- vue.js 로그인
- router 네비게이션
- vuex
- 백준 1110 시간 초과
- defaultProps
Archives
- Today
- Total
개발 일기
[백준 - JAVA] 10950번, 15552번 (Scanner vs BufferedReader) 본문
두 문제 모두 for문을 사용하여 입력받은 n번만큼 A+B를 실행하지만 구현방식은 다르다.
Scanner 방식처럼 입출력 방식이 느리면 여러 줄을 입력받거나 출력할 때 시간 초과가 날 수 있다.
10950
import java.util.*;
public class Main{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int number,a,b;
number = sc.nextInt();
for(int i=0;i<number;i++){
a = sc.nextInt();
b = sc.nextInt();
System.out.println(a+b);
}
}
}
15552
import java.io.*;
import java.util.*;
public class Main{
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
int num = Integer.parseInt(br.readLine());
StringTokenizer st;
int a,b;
for(int i=0;i<num;i++){
st = new StringTokenizer(br.readLine(), " ");
a = Integer.parseInt(st.nextToken());
b = Integer.parseInt(st.nextToken());
bw.write(a+b + "\n");
}
bw.flush();
br.close();
bw.close();
}
}
BufferedReader는 string으로 읽어오니 int로 형변환이 필요하다.
버퍼에 모두 저장한 다음에 flush 하면 버퍼에 저장된 내용들이 한번에 써지기때문에 성능면으로 좋다.
'알고리즘' 카테고리의 다른 글
[백준 - JAVA] 1110번 더하기 사이클 (시간 초과 해결하기) (0) | 2021.01.31 |
---|
Comments