結果
問題 | No.1505 Zero-Product Ranges |
ユーザー |
![]() |
提出日時 | 2021-05-14 22:13:05 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 39 ms / 2,000 ms |
コード長 | 509 bytes |
コンパイル時間 | 2,321 ms |
コンパイル使用メモリ | 194,432 KB |
最終ジャッジ日時 | 2025-01-21 11:18:11 |
ジャッジサーバーID (参考情報) |
judge2 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 49 |
ソースコード
#define rep(i, n) for (int i = 0; i < (int)(n); i++) #define ALL(v) v.begin(), v.end() typedef long long ll; #include <bits/stdc++.h> using namespace std; int main(){ ll n; cin>>n; vector<ll> A(n); rep(i,n) cin>>A[i]; ll ans=n*(n+1)/2; bool b=false; ll cnt=0; rep(i,n){ if(A[i]==1){ cnt++; b=true; } else{ if(b==true){ ans-=cnt*(cnt+1)/2; b=false; cnt=0; } } } if(b) ans-=cnt*(cnt+1)/2; cout<<ans<<endl; return 0; }