結果
問題 | No.698 ペアでチームを作ろう |
ユーザー | ciel |
提出日時 | 2018-06-09 18:09:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 395 bytes |
コンパイル時間 | 499 ms |
コンパイル使用メモリ | 62,548 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-30 12:38:58 |
合計ジャッジ時間 | 3,335 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 5 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 366 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
#include <vector> #include <set> #include <algorithm> #include <cstdio> using namespace std; typedef pair<long long,long long> pll; int main(){ int n,r=0; scanf("%d",&n); vector<int> v(n); for(int i=0;i<n;i++)scanf("%d",&v[i]); sort(v.begin(),v.end()); do{ int s=0; for(int i=0;i<n;i+=2)s+=v[i]^v[i+1]; r=max(s,r); }while(next_permutation(v.begin()+1,v.end())); printf("%d",r); }