結果

問題 No.2956 Substitute with Average
ユーザー vjudge1vjudge1
提出日時 2024-11-21 14:15:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,355 ms / 3,000 ms
コード長 724 bytes
コンパイル時間 2,184 ms
コンパイル使用メモリ 208,412 KB
実行使用メモリ 15,468 KB
最終ジャッジ日時 2024-11-21 14:16:04
合計ジャッジ時間 25,732 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,824 KB
testcase_10 AC 1,181 ms
15,464 KB
testcase_11 AC 1,203 ms
13,824 KB
testcase_12 AC 1,177 ms
14,816 KB
testcase_13 AC 1,182 ms
13,568 KB
testcase_14 AC 1,169 ms
13,568 KB
testcase_15 AC 1,170 ms
13,696 KB
testcase_16 AC 1,209 ms
13,696 KB
testcase_17 AC 1,183 ms
14,688 KB
testcase_18 AC 1,341 ms
15,216 KB
testcase_19 AC 1,351 ms
15,340 KB
testcase_20 AC 1,283 ms
14,208 KB
testcase_21 AC 1,313 ms
14,080 KB
testcase_22 AC 1,263 ms
15,468 KB
testcase_23 AC 1,355 ms
14,948 KB
testcase_24 AC 1,222 ms
13,952 KB
testcase_25 AC 1,224 ms
13,952 KB
testcase_26 AC 1,218 ms
13,952 KB
testcase_27 AC 1,222 ms
14,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const int MAXN = 1e5 + 10, MAXX = 32;

int n, a[MAXN], _a[MAXN], sum[MAXN];
long long ans, cnt[2][MAXX * MAXN];

int main(){
  ios::sync_with_stdio(0), cin.tie(0);
  cin >> n;
  for(int i = 1; i <= n; i++){
    cin >> a[i];
  }

  ans = 1ll * n * (n + 1) / 2 + 1;

  for(int i = 1; i <= 30; i++){
    map<int,int> cnt[2];
    for(int j = 1; j <= n; j++){
      _a[j] = i - a[j];
    }
    for(int j = 1; j <= n; j++){
      sum[j] = sum[j - 1] + _a[j];
      if(_a[j] == 0){
        cnt[0][sum[j - 1]]++;
        ans -= cnt[0][sum[j]] + cnt[1][sum[j]];
      } else {
        cnt[1][sum[j - 1]]++;
        ans -= cnt[0][sum[j]];
      }
    }
  }
  cout << ans;
  return 0;
}
0