結果

問題 No.2812 Plus Minus Blackboard
ユーザー tobbietobbie
提出日時 2024-08-03 12:19:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 732 bytes
コンパイル時間 1,901 ms
コンパイル使用メモリ 172,032 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-03 12:19:19
合計ジャッジ時間 5,170 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 86 ms
6,940 KB
testcase_06 AC 17 ms
6,944 KB
testcase_07 AC 13 ms
6,940 KB
testcase_08 AC 11 ms
6,940 KB
testcase_09 WA -
testcase_10 AC 10 ms
6,944 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 93 ms
6,940 KB
testcase_14 AC 24 ms
6,940 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 24 ms
6,940 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 90 ms
6,940 KB
testcase_22 WA -
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 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() {
  int n;
  cin >> n;
  vector<int> ap, an, az;
  rep(i, n) {
    int ai;
    cin >> ai;
    if (ai > 0)
      ap.push_back(ai);
    else if (ai < 0)
      an.push_back(ai);
    else
      az.push_back(ai);
  }
  sort(ap.begin(), ap.end());
  sort(an.begin(), an.end());
  int ip = (int)ap.size(), in = (int)an.size();
  int sump, sumn;;
  if (ip > 0)
    sump = ap[ip-1];
  else
    sump = 0;
  if (in > 0)
    sumn = an[0];
  else
    sumn = 0;
  rep(i, in-1)
    sump += an[i+1];
  rep(i, ip-1)
    sumn += ap[i];
  if (sump >= 0 && sumn <= 0)
    cout << "Yes" << endl;
  else
    cout << "No" << endl;
  return 0;
}
0