結果

問題 No.1816 MUL-DIV Game
ユーザー se1ka2se1ka2
提出日時 2022-01-21 21:39:18
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 485 bytes
コンパイル時間 564 ms
コンパイル使用メモリ 71,928 KB
実行使用メモリ 15,872 KB
最終ジャッジ日時 2024-11-25 23:04:51
合計ジャッジ時間 18,890 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 RE -
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
12,288 KB
testcase_04 AC 1 ms
10,496 KB
testcase_05 AC 1 ms
12,416 KB
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 2 ms
9,856 KB
testcase_08 AC 2 ms
10,496 KB
testcase_09 AC 8 ms
5,248 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 46 ms
6,272 KB
testcase_14 AC 25 ms
5,248 KB
testcase_15 TLE -
testcase_16 AC 9 ms
5,248 KB
testcase_17 TLE -
testcase_18 RE -
testcase_19 AC 28 ms
5,248 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 17 ms
5,248 KB
testcase_23 AC 1 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 TLE -
testcase_29 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <set>
using namespace std;
typedef long long ll;

int main()
{
	int n;
	cin >> n;
	multiset<ll> st;
	for(int i = 0; i < n; i++){
		ll a;
		cin >> a;
		st.insert(a);
	}
	for(int i = 0; i < n - 1; i++){
		if(i % 2 == 0){
			ll a = *st.begin();
			st.erase(st.begin());
			ll b = *st.begin();
			st.erase(st.begin());
			st.insert(a * b);
		}
		else{
			st.erase(*--st.end());
			st.erase(*--st.end());
			st.insert(1);
		}
	}
	cout << *st.begin() << endl;
}
0