結果

問題 No.1816 MUL-DIV Game
ユーザー square1001square1001
提出日時 2022-01-21 21:27:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 684 bytes
コンパイル時間 616 ms
コンパイル使用メモリ 79,944 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-05-04 11:54:50
合計ジャッジ時間 2,265 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 17 ms
5,376 KB
testcase_11 AC 16 ms
5,376 KB
testcase_12 AC 13 ms
5,376 KB
testcase_13 AC 44 ms
6,528 KB
testcase_14 AC 23 ms
5,376 KB
testcase_15 AC 31 ms
5,632 KB
testcase_16 AC 8 ms
5,376 KB
testcase_17 AC 59 ms
7,424 KB
testcase_18 AC 55 ms
7,168 KB
testcase_19 AC 26 ms
5,376 KB
testcase_20 AC 60 ms
7,680 KB
testcase_21 AC 20 ms
5,376 KB
testcase_22 AC 16 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 72 ms
8,448 KB
testcase_26 AC 36 ms
5,376 KB
testcase_27 AC 72 ms
8,448 KB
testcase_28 AC 37 ms
5,376 KB
testcase_29 AC 78 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <set>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;

int main() {
	int N;
	cin >> N;
	vector<int> A(N);
	for (int i = 0; i < N; i++) {
		cin >> A[i];
	}
	if (N % 2 == 1) {
		cout << (N == 1 ? A[0] : 1) << endl;
	}
	else {
		multiset<long long> s(A.begin(), A.end());
		for (int i = 0; i < N - 1; i++) {
			if (i % 2 == 0) {
				long long pa = *s.begin(); s.erase(s.begin());
				long long pb = *s.begin(); s.erase(s.begin());
				s.insert(pa * pb);
			}
			else {
				long long pa = *(--s.end()); s.erase(--s.end());
				long long pb = *(--s.end()); s.erase(--s.end());
				s.insert(1);
			}
		}
		cout << *s.begin() << endl;
	}
	return 0;
}
0