結果

問題 No.1816 MUL-DIV Game
ユーザー bokusunnybokusunny
提出日時 2022-01-21 21:30:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 2,390 ms
コンパイル使用メモリ 208,752 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-05-04 12:01:22
合計ジャッジ時間 4,046 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 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 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 24 ms
5,632 KB
testcase_11 AC 21 ms
5,400 KB
testcase_12 AC 16 ms
5,376 KB
testcase_13 AC 33 ms
6,656 KB
testcase_14 AC 18 ms
5,376 KB
testcase_15 AC 24 ms
5,632 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 48 ms
7,552 KB
testcase_18 AC 46 ms
7,296 KB
testcase_19 AC 21 ms
5,376 KB
testcase_20 AC 53 ms
7,936 KB
testcase_21 AC 16 ms
5,376 KB
testcase_22 AC 13 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 62 ms
8,576 KB
testcase_26 AC 64 ms
8,704 KB
testcase_27 AC 64 ms
8,576 KB
testcase_28 AC 61 ms
8,704 KB
testcase_29 AC 65 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define bokusunny ios::sync_with_stdio(false), cin.tie(nullptr);

void solve() {
  int N;
  cin >> N;
  vector<long long> A(N);
  for (int i = 0; i < N; i++) cin >> A[i];

  multiset<long long> st(A.begin(), A.end());
  int turn = 0;
  while ((int)st.size() > 1) {
    if (turn) {
      auto y = *st.rbegin();
      auto x = *next(st.rbegin());
      st.erase(st.find(y));
      st.erase(st.find(x));
      st.insert((x + y - 1) / y);
    } else {
      auto x = *st.begin();
      auto y = *next(st.begin());
      st.erase(st.find(x));
      st.erase(st.find(y));
      st.insert(x * y);
    }
    turn ^= 1;
  }

  cout << *st.begin() << endl;
}

int main() {
  bokusunny;
  solve();

  return 0;
}
0