알고리즘 문제 풀이 코드 업로드
15! > 231 - 1
21! > 263 - 1
Data Type Ranges
int : -2,147,483,648 ~ 2,147,483,647
long long : -9,223,372,036,854,775,808 ~ 9,223,372,036,854,775,807
Priority Queue
오름차순으로 pq 선언
priority_queue<int, vector<int>, greater<int> > pq;