結果

問題 No.1505 Zero-Product Ranges
ユーザー 🍮かんプリン
提出日時 2021-05-17 18:28:00
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 554 bytes
コンパイル時間 1,568 ms
コンパイル使用メモリ 167,824 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-06 21:16:49
合計ジャッジ時間 4,296 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 49
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2021.05.17 18:27:51
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;

int main() {
    int n;cin >> n;
    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    ll ans = 0, cnt = 0;
    for (int i = 0; i < n; i++) {
        if (a[i] == 0) {
            ans += cnt*(cnt+1)/2;
            cnt = 0;
        }
        else {
            cnt++;
        }
    }
    ans += cnt*(cnt+1)/2;
    cout << (ll)n*(n+1)/2 - ans << endl;
    return 0;
}
0