백준 15552
by atomic0x90 (Yujun Han)
BOJ - 15552 - 빠른 A+B
설명
C++ 코드를 사용하기 때문에 C++ 기준입니다.
cout의 출력 속도는 c-language 의 printf 출력 속도 보다 느리다.
그래서 속도에 민감한 경우 cout의 줄바꿈인 endl
보다 개행 문자('\n'
)를 사용한다.
또한 ios::sync_with_stdio(false)
를 사용하고 cin.tie(NULL)
를 사용하면 출력 속도가 향상된다.
이것들을 사용하는 방법에 대한 설명을 보고싶으면 아래의 링크를 들어가 보자
ios::sync_with_stdio(false), cin.tie(NULL) 사용방법 알아보기
code
#include <iostream>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
int testCase;
int a,b;
cin>>testCase;
for(int i = 0;i < testCase;i++)
{
cin>>a>>b;
cout<<a+b<<"\n";
}
return 0;
}
감사합니다.
홈으로 가기 | 더 많은 백준 문제 풀이 보기 | post 목록 보기 |
---|---|---|