結果

問題 No.2835 Take and Flip
ユーザー かちわけかちわけ
提出日時 2024-08-09 21:48:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 1,802 ms
コンパイル使用メモリ 178,808 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-09 21:48:24
合計ジャッジ時間 4,254 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 87 ms
6,940 KB
testcase_04 AC 93 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 89 ms
6,944 KB
testcase_07 AC 90 ms
6,940 KB
testcase_08 AC 81 ms
6,944 KB
testcase_09 AC 96 ms
6,944 KB
testcase_10 AC 97 ms
6,944 KB
testcase_11 AC 98 ms
6,944 KB
testcase_12 AC 100 ms
6,940 KB
testcase_13 AC 99 ms
6,948 KB
testcase_14 AC 38 ms
6,944 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 64 ms
6,940 KB
testcase_17 AC 8 ms
6,940 KB
testcase_18 AC 76 ms
6,944 KB
testcase_19 AC 92 ms
6,940 KB
testcase_20 AC 35 ms
6,944 KB
testcase_21 AC 90 ms
6,940 KB
testcase_22 AC 65 ms
6,940 KB
testcase_23 AC 28 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i, n) for(int i=0 ; (i)<(int)(n) ; (i)++)

int main(void){
    int n;
    cin >> n;
    deque<int> a(n);
    REP(i, n) cin >> a.at(i);
    sort(a.begin(), a.end());
    
    long long ans = 0;
    REP(i, (n+1)/2){
        ans += a.at(n-1-i);
        if(n%2 != 0 && i == n/2) continue;
        else ans += a.at(i);
    }
    cout << ans << endl;
}
0