본문 바로가기

백준

15552 빠른 A + B

    cin.tie(NULL); 
    ios_base::sync_with_stdio(false);

이런 것도 있구나.. 처음 써봄

그냥 문제에서 알려주는게 다라 그대로 썼다. 

 

#include <iostream>

using namespace std;

int main() {
    int n, a, b;
    
    cin.tie(NULL);
    ios_base::sync_with_stdio(false);
    cin >> n;
    
    for(int i = 0; i < n; i++){
        cin >> a >> b;
        cout << a + b << '\n';
    }
    
    return 0;
}

입력 어마무시하게 들어올 때 다시 함 써봐야지

 

 

'백준' 카테고리의 다른 글

1158 조세퍼스 문제  (0) 2019.10.13
1193 분수찾기  (0) 2019.10.13
4673 셀프 넘버  (0) 2019.10.12
1110 더하기 사이클  (0) 2019.10.11
2839 설탕 배달  (0) 2019.10.11