結果

問題 No.2835 Take and Flip
ユーザー tu sutu su
提出日時 2024-08-21 06:44:21
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 4,913 ms
コンパイル使用メモリ 277,188 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-21 06:44:32
合計ジャッジ時間 8,043 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 32 ms
6,812 KB
testcase_04 AC 34 ms
6,820 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 42 ms
6,940 KB
testcase_07 AC 43 ms
6,940 KB
testcase_08 AC 38 ms
6,944 KB
testcase_09 AC 44 ms
6,940 KB
testcase_10 AC 45 ms
6,940 KB
testcase_11 AC 46 ms
6,944 KB
testcase_12 AC 45 ms
6,944 KB
testcase_13 AC 45 ms
6,944 KB
testcase_14 AC 19 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 31 ms
6,944 KB
testcase_17 AC 4 ms
6,944 KB
testcase_18 AC 36 ms
6,944 KB
testcase_19 AC 43 ms
6,944 KB
testcase_20 AC 17 ms
6,944 KB
testcase_21 AC 42 ms
6,940 KB
testcase_22 AC 30 ms
6,940 KB
testcase_23 AC 15 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define endl "\n"
#define int long long
typedef long long ll;
void solved() {
  int n;
  cin >> n;
  int a[n + 1];
  for (int i = 1; i <= n; i++) cin >> a[i];
  sort(a + 1, a + n + 1);
  int sum1 = 0, sum2 = 0;
  for (int i = 1, j = n; i < j; i++, j--) {
    sum1 += a[j];
    sum2 -= a[i];
  }
  if (n & 1) sum1 += a[(n + 1) / 2];
  cout << sum1 - sum2 << endl;
}
signed main() {
  ios::sync_with_stdio(0);
  cin.tie(0);
  cout.tie(0);
  /* int t = 1;
   cin >> t;
   while (t--)*/
  solved();

  return 0;
}
0