結果

問題 No.2812 Plus Minus Blackboard
ユーザー tobbietobbie
提出日時 2024-08-03 12:50:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 755 bytes
コンパイル時間 2,018 ms
コンパイル使用メモリ 171,600 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-08-03 12:50:07
合計ジャッジ時間 5,564 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 92 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 17 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 9 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 22 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 75 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i, n) for (int i = 0; i < (int)n; i++)
using ll = long long int;

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();
  ll 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