結果

問題 No.1816 MUL-DIV Game
ユーザー SamShawCraftSamShawCraft
提出日時 2022-01-28 22:31:54
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 589 ms
コンパイル使用メモリ 54,480 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-12-30 08:34:32
合計ジャッジ時間 3,281 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 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 2 ms
5,248 KB
testcase_09 AC 7 ms
5,248 KB
testcase_10 AC 28 ms
5,248 KB
testcase_11 AC 26 ms
5,248 KB
testcase_12 AC 17 ms
5,248 KB
testcase_13 AC 40 ms
5,888 KB
testcase_14 AC 21 ms
5,248 KB
testcase_15 AC 27 ms
5,248 KB
testcase_16 AC 7 ms
5,248 KB
testcase_17 AC 56 ms
7,040 KB
testcase_18 AC 49 ms
6,528 KB
testcase_19 AC 24 ms
5,248 KB
testcase_20 AC 54 ms
7,040 KB
testcase_21 AC 17 ms
5,248 KB
testcase_22 AC 15 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 70 ms
7,936 KB
testcase_26 AC 69 ms
7,808 KB
testcase_27 AC 72 ms
7,936 KB
testcase_28 AC 69 ms
7,936 KB
testcase_29 AC 70 ms
7,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <algorithm>
#include <set>
#define qaq inline
const int sz=1e5+19;
using ll=long long;
int n,arr[sz];
std::multiset<ll> ms;
int main(){
  scanf("%d",&n);
  for(int cx=0,u;cx<n;++cx){
    scanf("%d",&u);
    ms.insert(u);
  }
  for(int cx=1;cx<n;++cx){
    if(cx&1){
      ll x=*ms.begin();
      ms.erase(ms.begin());
      ll y=*ms.begin();
      ms.erase(ms.begin());
      ms.insert(1LL*x*y);
    }else{
      ms.erase(--ms.end());
      ms.erase(--ms.end());
      ms.insert(1);
    }
  }
  printf("%lld\n",*ms.begin());
  return 0;
}
0