結果
問題 | No.1765 While Shining |
ユーザー | 👑 CleyL |
提出日時 | 2022-09-16 16:58:26 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 37 ms / 2,000 ms |
コード長 | 419 bytes |
コンパイル時間 | 634 ms |
コンパイル使用メモリ | 73,088 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-21 13:51:37 |
合計ジャッジ時間 | 2,681 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 |
ソースコード
#include <iostream> #include <vector> using namespace std; int main(){ int n;cin>>n; vector<int> A(n); for(int i = 0; n > i; i++){ cin>>A[i]; } long long nw = 0; int nwdex = -1; long long ans = 0; for(int i = n-1;0 <= i; i--){ if(nwdex != A[i]){ nw++; nwdex = A[i]; }else{ nw = 2; } if(i != n-1 && A[i] == 1){ ans += nw-1; } } cout << ans << endl; }