A. Case of the Zeros and Ones

简介:

题目链接:http://codeforces.com/contest/556/problem/A

#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
    int m;
    string s;
    cin>>m>>s;
    int j=0;
    for(int i=0; i<m; i++)
    {
        if(s[i]=='0')
            j++;
    }
    cout<<abs(m-2*j);
    return 0;
}
目录
相关文章
|
6月前
|
Linux Windows
【已解决】ValueError: num_samples should be a positive integer value, but got num_samples=0
【已解决】ValueError: num_samples should be a positive integer value, but got num_samples=0
成功解决ValueError: Input contains NaN, infinity or a value too large for dtype('float64').
成功解决ValueError: Input contains NaN, infinity or a value too large for dtype('float64').
成功解决but is 0 and 2 (computed from start 0 and end 9223372 over shape with rank 2 and stride-1)
成功解决but is 0 and 2 (computed from start 0 and end 9223372 over shape with rank 2 and stride-1)
range
range() 是一个函数,可以用来生成一个自然数的序列。 该函数需要三个参数:起始位置(可以省略,默认是 0);结束位置;步长(可以省略,默认是 1)。 通过 range() 可以创建一个执行指定次数的 for 循环。
108 0
range
解决AssertionError: size of input tensor and input format are different.tensor shape: (3, 138input_for
解决AssertionError: size of input tensor and input format are different.tensor shape: (3, 138input_for
437 0
np.random.choice 参数replace
np.random.choice 参数replace
127 0
|
存储
range_hashed
range_hashed
86 0
|
Python
20181005case-----np.c_
1.在pandas里想获取某行的数据,可以用 name[[‘列名’,‘列名’]].iloc[行号] 例: full_country_stats[[“GDPpercaptial”,“Lifesatisfaction”]].iloc[remove_indices] 2.把pandas里的某列数据转换成可以进行运算的矩阵 np.c_p[name[‘列名’] ]
20181005case-----np.c_