結果

問題 No.1505 Zero-Product Ranges
コンテスト
ユーザー abc3
提出日時 2021-05-14 22:17:17
言語 C++17
(gcc 15.2.0 + boost 1.90.0)
コンパイル:
g++-15 -O2 -lm -std=c++17 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 888 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,180 ms
コンパイル使用メモリ 210,720 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2026-06-20 08:40:46
合計ジャッジ時間 3,187 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13 WA * 36
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

    #include <bits/stdc++.h>
    using namespace std;
    #include <math.h>
    #include <iomanip>
    #include <cstdint>
    #include <string>
    #include <sstream>
    template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
    template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
    #define rep(i,n) for (int i = 0; i < (n); ++i)
    typedef long long ll;
    using P=pair<ll,ll>;
    const int INF=1001001001;
    const int mod=1e9+7;
    
    void solve(){
      int n;
      cin>>n;
      vector<int>a(n);
      rep(i,n){cin>>a[i];}
      ll ans=n*(n+1)/2;
      int i=0;
      while(i<n){
        while(i<n&&a[i]==0){i++;}
        ll cnt=0;
        while(i<n&&a[i]==1){i++;cnt++;}
        ans-=cnt*(cnt+1)/2;
      }
      cout<<ans<<endl;
    }
    int main(){
        solve();
        return 0;
    }
0