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
- 다형성
- FileInputStream
- 초보개발자
- 백엔드
- throws
- try-catch
- 파이팅
- 메서드
- 개발자
- 새벽공부
- SSR
- exception
- ArrayList
- 변수
- 문자 단위 스트림
- 인스턴스
- 자료형
- 보조 스트림
- 졸리다
- MPA
- 상속
- 배열
- 예외 처리
- 코딩
- 인터페이스
- 바이트 단위 스트림
- 자바
- 코린이
- node.js
- Java
Archives
- Today
- Total
SHUSTORY
[ 백준 ] 11382번 : 꼬마 정민 _ JAVA 본문
728x90
문제
- 1 ≤ A, B, C ≤ 10¹² 로 숫자의 범위가 주어졌으므로, int 형을 쓰면 틀린다.
풀이
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 br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine()," ");
int A = Integer.parseInt(st.nextToken());
int B = Integer.parseInt(st.nextToken());
int C = Integer.parseInt(st.nextToken());
System.out.println(A + B + C);
}
}
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine()," ");
int A = Integer.parseInt(st.nextToken());
int B = Integer.parseInt(st.nextToken());
int C = Integer.parseInt(st.nextToken());
System.out.println(A + B + C);
}
}
- 내 풀이에서는 int 형을 작성했으므로 틀렸다.
- 참고로 위 문제에서 입력값 77 77 7777의 경우에는 int 자료형으로도 처리가 가능하다.
그러나 문제 조건에 따라 long 형을 사용하도록 하자.- int 자료형이 표현할 수 있는 값 범위
- 최소값: -2,147,483,648 (-2^31)
- 최대값: 2,147,483,647 (2^31 - 1)
- int 자료형이 표현할 수 있는 값 범위
- 그리고 위 코드보다 간결하게 작성할 수 있다.
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
long a = sc.nextLong();
long b = sc.nextLong();
long c = sc.nextLong();
sc.close();
System.out.println(a + b + c);
}
}
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
long a = sc.nextLong();
long b = sc.nextLong();
long c = sc.nextLong();
sc.close();
System.out.println(a + b + c);
}
}
'코딩테스트 > JAVA' 카테고리의 다른 글
[ 백준 ] 2739번 : 구구단 _ JAVA (0) | 2023.11.27 |
---|---|
[ 백준 ] 2480번 : 주사위 세개 _ JAVA (0) | 2023.11.27 |
[ 백준 ] 14681번 : 사분면 고르기 _ JAVA (1) | 2023.11.26 |
[ 백준 ] 9498번 : 시험 성적 _ JAVA (0) | 2023.11.26 |
[ 백준 ] 1008번 : A/B _ JAVA (0) | 2023.11.25 |