結果
問題 | No.999 てん vs. ほむ |
ユーザー | a0171610 |
提出日時 | 2020-04-10 20:52:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 521 bytes |
コンパイル時間 | 1,570 ms |
コンパイル使用メモリ | 170,540 KB |
実行使用メモリ | 11,552 KB |
最終ジャッジ日時 | 2024-09-15 13:19:22 |
合計ジャッジ時間 | 5,897 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using lint = long long; signed main(){ lint N; cin >> N; vector<lint> a(2*N); for(lint i = 0; i < a.size(); i++) cin >> a[i]; lint ans = 0; for(lint i = 0; i < N; i++){ lint n = a.size(); lint p = a[0] - a[1]; lint q = a[n - 1] - a[n - 2]; if(p > q){ a.erase(a.begin()); a.erase(a.begin()); ans += p; } if(p <= q){ a.erase(a.begin() + n - 1); a.erase(a.begin() + n - 2); ans += q; } } cout << ans << endl; }