結果

問題 No.1816 MUL-DIV Game
ユーザー SamShawCraftSamShawCraft
提出日時 2022-01-28 22:31:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 714 ms
コンパイル使用メモリ 54,448 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-06-09 15:48:31
合計ジャッジ時間 2,467 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 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 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 21 ms
5,376 KB
testcase_11 AC 20 ms
5,376 KB
testcase_12 AC 14 ms
5,376 KB
testcase_13 AC 29 ms
6,016 KB
testcase_14 AC 16 ms
5,376 KB
testcase_15 AC 21 ms
5,376 KB
testcase_16 AC 6 ms
5,376 KB
testcase_17 AC 40 ms
7,040 KB
testcase_18 AC 37 ms
6,912 KB
testcase_19 AC 18 ms
5,376 KB
testcase_20 AC 43 ms
7,168 KB
testcase_21 AC 14 ms
5,376 KB
testcase_22 AC 11 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 51 ms
7,936 KB
testcase_26 AC 50 ms
7,936 KB
testcase_27 AC 49 ms
7,936 KB
testcase_28 AC 50 ms
7,808 KB
testcase_29 AC 49 ms
7,936 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