結果

問題 No.2790 Athena 3
ユーザー karinohitokarinohito
提出日時 2024-09-08 19:28:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 2,432 ms
コンパイル使用メモリ 203,856 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-08 19:28:36
合計ジャッジ時間 3,588 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,948 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    vector<int> A(6);
    for(int i=0;i<6;i++)cin>>A[i];
    int an=0;
    for(int i=0;i<64;i++){
        vector<int> B=A;
        int n=i;
        int m;
        for(int j=0;j<3;j++){
            m=n%4;
            B[j*2+m/2]+=(1-2*(m%2));
            n/=4;
        }
        for(int i=2;i<6;i++)B[i]-=B[i%2];
        an=max(an,abs(B[2]*B[5]-B[4]*B[3]));
    }
    cout<<double(an)/2.0<<endl;
    
}
0