結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 6 ms
5,248 KB
testcase_10 AC 21 ms
5,760 KB
testcase_11 AC 18 ms
5,376 KB
testcase_12 AC 13 ms
5,248 KB
testcase_13 AC 29 ms
6,528 KB
testcase_14 AC 16 ms
5,248 KB
testcase_15 AC 20 ms
5,760 KB
testcase_16 AC 6 ms
5,248 KB
testcase_17 AC 41 ms
7,680 KB
testcase_18 AC 38 ms
7,424 KB
testcase_19 AC 19 ms
5,504 KB
testcase_20 AC 41 ms
7,936 KB
testcase_21 AC 14 ms
5,248 KB
testcase_22 AC 12 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 54 ms
8,704 KB
testcase_26 AC 53 ms
8,704 KB
testcase_27 AC 51 ms
8,576 KB
testcase_28 AC 51 ms
8,576 KB
testcase_29 AC 52 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