結果

問題 No.1792 科学の甲子園
ユーザー karinohitokarinohito
提出日時 2024-09-24 02:55:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 25 ms / 4,000 ms
コード長 1,055 bytes
コンパイル時間 2,093 ms
コンパイル使用メモリ 208,232 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-24 06:06:55
合計ジャッジ時間 3,808 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
6,816 KB
testcase_01 AC 18 ms
6,944 KB
testcase_02 AC 17 ms
6,940 KB
testcase_03 AC 18 ms
6,944 KB
testcase_04 AC 25 ms
6,940 KB
testcase_05 AC 20 ms
6,940 KB
testcase_06 AC 18 ms
6,940 KB
testcase_07 AC 18 ms
6,944 KB
testcase_08 AC 18 ms
6,944 KB
testcase_09 AC 17 ms
6,944 KB
testcase_10 AC 18 ms
6,940 KB
testcase_11 AC 18 ms
6,944 KB
testcase_12 AC 18 ms
6,944 KB
testcase_13 AC 19 ms
6,944 KB
testcase_14 AC 19 ms
6,940 KB
testcase_15 AC 19 ms
6,940 KB
testcase_16 AC 18 ms
6,940 KB
testcase_17 AC 17 ms
6,944 KB
testcase_18 AC 18 ms
6,940 KB
testcase_19 AC 18 ms
6,940 KB
testcase_20 AC 19 ms
6,944 KB
testcase_21 AC 19 ms
6,944 KB
testcase_22 AC 20 ms
6,940 KB
testcase_23 AC 19 ms
6,944 KB
testcase_24 AC 17 ms
6,940 KB
testcase_25 AC 18 ms
6,944 KB
testcase_26 AC 18 ms
6,940 KB
testcase_27 AC 19 ms
6,944 KB
testcase_28 AC 20 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

using ll=long long;

int main(){
    ll N;
    cin>>N;
    vector<vector<ll>> A(N,vector<ll>(6));
    for(int i=0;i<N;i++){
        for(int j=0;j<6;j++){
            cin>>A[i][j];
        }
    }
    vector<ll> B;
    for(int b=0;b<64;b++){
        ll M=0,id=0;
        for(int i=0;i<N;i++){
            ll r=1;
            for(int j=0;j<6;j++)if(b&(1<<j))r*=A[i][j];
            if(M<r){
                M=r;
                id=i;
            }
        }
        B.push_back(id);
    }
    ll an=0;
    vector<int> D(4,0);
    for(D[0]=0;D[0]<63;D[0]++){
        for(D[1]=0;D[1]<D[0];D[1]++){
            for(D[2]=0;D[2]<D[1];D[2]++){
                for(D[3]=0;D[3]<D[2];D[3]++){
                    ll r=1;
                    for(int j=0;j<6;j++){
                        ll m=0;
                        for(int k=0;k<4;k++)m=max(m,A[B[D[k]]][j]);
                        r*=m;
                    }
                    an=max(an,r);
                }
            }
        }
    }
    cout<<an<<endl;
}

0