結果
問題 | No.1816 MUL-DIV Game |
ユーザー | se1ka2 |
提出日時 | 2022-01-21 21:39:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 485 bytes |
コンパイル時間 | 553 ms |
コンパイル使用メモリ | 72,816 KB |
実行使用メモリ | 14,016 KB |
最終ジャッジ日時 | 2024-05-04 12:15:15 |
合計ジャッジ時間 | 5,015 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | RE | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 8 ms
5,376 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | AC | 44 ms
6,144 KB |
testcase_14 | AC | 24 ms
5,376 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
#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; }