# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
9717 | dolpang2 | Uniting (kriii2_U) | C++14 | 0 ms | 1244 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <algorithm>
#include <cstdio>
#include <deque>
#include <vector>
int main() {
int N = 0;
scanf("%d", &N);
std::deque<int> bundle_of_number;
for (int i = 0; i < N; ++i) {
int number = 0;
scanf("%d", &number);
bundle_of_number.push_back(number);
}
std::sort(bundle_of_number.begin(), bundle_of_number.end());
for (;;) {
if (bundle_of_number.size() == 1) {
break;
}
int ret = bundle_of_number.at(0) * bundle_of_number.at(1);
bundle_of_number.push_back(ret);
bundle_of_number.pop_front();
bundle_of_number.pop_front();
std::sort(bundle_of_number.begin(), bundle_of_number.end());
}
printf("%d", bundle_of_number.at(0));
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |