結果

問題 No.1816 MUL-DIV Game
ユーザー iw522iw522
提出日時 2022-01-21 22:13:25
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 762 bytes
コンパイル時間 1,831 ms
コンパイル使用メモリ 171,668 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-26 00:39:18
合計ジャッジ時間 2,788 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i,n) for(ll i=0; i<(ll)n; i++)
#define reps(i,n) for(ll i=1; i<=(ll)n; i++)
#define repi(i,a,b) for(ll i=(ll)a; i<(ll)b; i++)
#define pb push_back
#define mp make_pair
#define ALL(i) i.begin(),i.end()
ll INF = 1000000000000000;

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    ll n; cin >> n;
    vector<ll> a(n);
    rep(i,n) {
        cin >> a[i];
    }
    sort(ALL(a));
    if(a.size()==1){
        cout << a[0] << endl;
        return 0;
    }
    if(a.size()==2){
        cout << a[0]*a[1] << endl;
        return 0;
    }
    if(a.size()%2){
        cout << 1 << endl;
    }
    else{
        cout << min(a[0]*a[1],a[2]) << endl;
    }
    return 0;
}
0