結果
問題 | No.2790 Athena 3 |
ユーザー | a01sa01to |
提出日時 | 2024-06-23 00:39:01 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,177 bytes |
コンパイル時間 | 2,742 ms |
コンパイル使用メモリ | 245,328 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-23 00:39:05 |
合計ジャッジ時間 | 3,584 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #ifdef LOCAL #include "settings/debug.cpp" #define _GLIBCXX_DEBUG #else #define Debug(...) void(0) #endif #define rep(i, n) for (int i = 0; i < (n); ++i) using ll = long long; using ull = unsigned long long; int main() { int _a, _b, _c, _d, _e, _f; cin >> _a >> _b >> _c >> _d >> _e >> _f; int ans = 0; rep(bit, 0b1111'1111'1111 + 1) { int xbit = (bit >> 0) & 0b1111; int ybit = (bit >> 4) & 0b1111; int zbit = (bit >> 8) & 0b1111; if (popcount(ull(xbit)) != 1 || popcount(ull(ybit)) != 1 || popcount(ull(zbit)) != 1) continue; int a = _a + (xbit & 0b0010 ? 1 : 0) - (xbit & 0b0001 ? 1 : 0); int b = _b + (xbit & 0b1000 ? 1 : 0) - (xbit & 0b0100 ? 1 : 0); int c = _c + (ybit & 0b0010 ? 1 : 0) - (ybit & 0b0001 ? 1 : 0); int d = _d + (ybit & 0b1000 ? 1 : 0) - (ybit & 0b0100 ? 1 : 0); int e = _e + (zbit & 0b0010 ? 1 : 0) - (zbit & 0b0001 ? 1 : 0); int f = _f + (zbit & 0b1000 ? 1 : 0) - (zbit & 0b0100 ? 1 : 0); int s = b * c - f * c - a * d - b * e + d * e + a * f; ans = max(ans, s); } cout << ans / 2; if (ans % 2) cout << ".5"; cout << endl; return 0; }