結果

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

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;

int main() {
    int N;
    string S;
    cin >> N >> S;
    
    int res = 0;
    for (int i = 0; i < N; ) {
        if (S[i] == '0') {
            int j = i;
            while (j < N && S[j] == '0') {
                j++;
            }
            int len = j - i;
            res += (len + 1) / 2;
            i = j;
        } else {
            i++;
        }
    }
    cout << res << endl;
    return 0;
}
0