标签:ace ref namespace class problem put 字符 href tle
题目链接:http://acm.csust.edu.cn/problem/3031
众所周知,常守朱是一个优秀的执行官,她凭借自身的卓越能力解决了许多案件,当然她手中的支配者也为办案提供了很大的便利,支配者可以测量一个人的犯罪指数,当超过一定值时,则被认为是罪犯。
支配者的工作原理如下:将一个人的脑电波转化为01串(我瞎编的),01串中1的个数越多,则犯罪指数越高,下面给你一个01串,请你统计该串中1的个数
一个字符串s,字符串的长度小于1e5
字符串中1的个数
0101
2
没什么好说的,学了字符串的都会。
以下是AC代码:
#include <bits/stdc++.h> using namespace std; const int mac=1e5+10; char s[mac]; int main() { int nb=0; scanf ("%s",s); int len=strlen(s); for (int i=0; i<len; i++) if (s[i]==‘1‘) nb++; printf ("%d\n",nb); return 0; }
标签:ace ref namespace class problem put 字符 href tle
原文地址:https://www.cnblogs.com/lonely-wind-/p/12003637.html