結果

問題 No.2812 Plus Minus Blackboard
ユーザー reirei
提出日時 2024-07-19 21:54:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,112 bytes
コンパイル時間 967 ms
コンパイル使用メモリ 97,184 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 21:54:45
合計ジャッジ時間 2,165 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 14 ms
5,376 KB
testcase_05 AC 22 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 19 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 13 ms
5,376 KB
testcase_12 AC 10 ms
5,376 KB
testcase_13 AC 22 ms
5,376 KB
testcase_14 AC 7 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 20 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 5 ms
5,376 KB
testcase_19 AC 17 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 23 ms
5,376 KB
testcase_22 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'void _main()':
main.cpp:61:7: warning: division by zero [-Wdiv-by-zero]
   61 |     1 / 0;
      |     ~~^~~

ソースコード

diff #

#include <algorithm>
#include <atcoder/fenwicktree.hpp>
#include <cassert>
#include <cmath>
#include <cstring>
#include <iostream>
#include <map>
#include <numeric>
#include <set>
#include <utility>
#include <vector>
using namespace std;
using i8 = int8_t;
using i32 = int;
using i64 = long long;
// using i128 = __int128;
using u64 = unsigned long long;
using ll = long long;

void _main();
int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
  _main();
}

i64 pow(i64 j, i64 n) {
  i64 res = 1;
  while (n > 0) {
    if (n & 1)
      res *= j;
    j *= j;
    n >>= 1;
  }
  return res;
}

using p2 = pair<i64, i64>;
void _main() {
  i64 n;
  cin >> n;
  i64 maxa = 0, maxb = 0;
  i64 cnta = 0, cntb = 0;
  i64 suma = 0, sumb = 0;
  for (i64 i = 0; i < n; i++) {
    i64 a;
    cin >> a;
    if (a < 0) {
      maxa = min(maxa, a);
      suma += a;
      cnta++;
    } else if (a > 0) {
      maxb = max(maxb, a);
      sumb += a;
      cntb++;
    }
  }
  if ((cnta && suma - maxa + sumb >= 0) || (cntb && suma + sumb - maxb <= 0)) {
    cout << "Yes\n";
  } else {
    1 / 0;
    cout << "No\n";
  }
}
0