比赛 20241126 评测结果 AWWWWWWWWW
题目名称 小b爱取模 最终得分 10
用户昵称 黄天乐 运行时间 1.960 s
代码语言 C++ 内存使用 13.65 MiB
提交时间 2024-11-26 09:09:03
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int k,ans;
string n;
int main(){
    freopen("changgao_modulo.in","r",stdin);
    freopen("changgao_modulo.out","w",stdout);
    cin>>k>>n;
    for(int i=0;i<n.length();i++){
        if(n[i]=='0')continue;
        while(n[i]=='1'){
            i++;
        }
        ans++;
    }
    cout<<ans<<endl;
    return 0;
}