# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
9721 |
2014-09-28T08:21:14 Z |
dolpang2 |
Uniting (kriii2_U) |
C++14 |
|
0 ms |
1244 KB |
#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\n", bundle_of_number.at(0));
printf("0");
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
1244 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |