[백준/C++] 10824번_네 수

이수진·2021년 12월 29일
0

문제는 간단하지만, 앞으로 백준을 풀 때에 있어서 주의해야 할 부분이라 정리해둔다.

문제는 쉽다!

그리고 나의 답안 소스코드는 다음과 같다.

#include <iostream>
#include <string>
#include <cmath>

using namespace std;

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    string a, b, c, d;
    cin>>a>>b>>c>>d;

    a += b; c += d;

    long long res = stoll(a)+stoll(c);
    cout<<res<<endl;
    return 0;
}

마지막 결과를 도출하는 부분에서 처음에 자료형을 int res 라고 하여 런타임에러가 났었다.

문제의 조건을 자세히 보면 각 수는 1,000,000 까지 입력이 가능하다.

ABCD모두 1,000,000이 입력된 경우에는 2,000,000 * 2,000,000 = 4,000,000,000,000 까지 최대값이 나올 수 있다.

따라서 알맞은 자료형을 사용해 줘야 한다.
그래서 여기에서는 long long 을 이용해 주었다.

profile
꾸준히, 열심히, 그리고 잘하자

1개의 댓글

comment-user-thumbnail
2024년 3월 19일

Hello, I want to tell you how I am having fun. I love to play in casinos, and the largest selection of casinos is on Wild joker because they have the best slots and casino games in Australia that I have ever seen. The slot machines are filled with games of different genres and you are sure to find something to suit your taste. I recommend you to try this site. You can register right now and get bonuses. Have fun playing)

답글 달기