結果

問題 No.2812 Plus Minus Blackboard
ユーザー risujirohrisujiroh
提出日時 2024-07-19 21:27:27
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 721 bytes
コンパイル時間 3,271 ms
コンパイル使用メモリ 246,400 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-19 21:27:53
合計ジャッジ時間 4,115 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 27 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 6 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 4 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 9 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 23 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using Int = int64_t;

void Solve() {
  Int n;
  std::cin >> n;
  std::vector<Int> a(n);
  Int positive = 0;
  Int negative = 0;
  Int positive_max = 0;
  Int negative_max = 0;
  for (Int i = 0; i < n; ++i) {
    std::cin >> a[i];
    if (0 < a[i]) {
      positive += a[i];
      positive_max = std::max(positive_max, a[i]);
    } else if (a[i] < 0) {
      negative += -a[i];
      negative_max = std::max(negative_max, -a[i]);
    }
  }

  if (negative - negative_max <= positive_max &&
      positive - positive_max <= negative_max) {
    std::cout << "Yes\n";
  } else {
    std::cout << "No\n";
  }
}

int main() {
  std::ios::sync_with_stdio(false);
  std::cin.tie(nullptr);

  Solve();
}
0