結果
問題 | No.837 Noelちゃんと星々2 |
ユーザー | trineutron |
提出日時 | 2019-06-15 01:32:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 680 bytes |
コンパイル時間 | 1,594 ms |
コンパイル使用メモリ | 172,700 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-15 19:48:27 |
合計ジャッジ時間 | 3,186 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
6,816 KB |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,816 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
6,816 KB |
testcase_25 | WA | - |
testcase_26 | AC | 2 ms
6,816 KB |
testcase_27 | WA | - |
testcase_28 | AC | 2 ms
6,816 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 2 ms
6,820 KB |
testcase_32 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; vector<int> y(n); for (int i = 0; i < n; i++) cin >> y.at(i); sort(y.begin(), y.end()); int dmax = 0, dmaxi = 0; for (int i = 0; i < n - 1; i++) { int d = y.at(i + 1) - y.at(i); if (d > dmax) { dmax = d; dmaxi = i; } } if (dmax == 0) { cout << 1 << endl; return 0; } long dsum = 0, yformer = y.at(n / 4), ylatter = y.at(3 * n / 4); for (int i = 0; i < n / 2; i++) dsum += abs(y.at(i) - yformer); for (int i = n / 2; i < n; i++) dsum += abs(y.at(i) - ylatter); cout << dsum << endl; }