Recent Posts

BOJ 백준 4948 베르트랑 공준 풀이

less than 1 minute read

사용언어 Visual studio 2019 C++ [4948 풀이] #include <iostream> #include <math.h> #define endl "\n" using namespace std; bool sosu[123456 * 2 +...

BOJ 백준 15353 큰 수 A+B(2) 풀이

less than 1 minute read

사용언어 Visual studio 2019 C++ [15353 풀이] #include <iostream> #include <string> #include <algorithm> #define endl "\n" using namespace ...

백준 BOJ 6679 싱기한 네자리 숫자 풀이

less than 1 minute read

사용언어 Visual studio 2019 C++ 생각하기 브루트 포스(완전탐색) [6679 풀이] #include <iostream> #include <algorithm> #define endl "\n" using namespace std; ...