結果

問題 No.3114 0→1
ユーザー V_Melville
提出日時 2025-04-19 05:51:10
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 367 bytes
コンパイル時間 5,822 ms
コンパイル使用メモリ 343,236 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-04-19 05:51:17
合計ジャッジ時間 6,572 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other WA * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/extc++.h>
#define rep(i, n) for (int i = 0; i < (n); ++i)

using namespace std;

int main() {
    int n;
    string s;
    cin >> n >> s;
    
    int ans = 0;
    rep(i, n) if (s[i] == '0') {
        int l = i;
        while (i < n and s[i] == '0') ++i;
        int r = i;
        ans += r-l-1;
    }
    
    cout << ans << '\n';
    
    return 0;
}
0