抽象题解
2024-05-05 12:37:38
发布于:广东
15阅读
0回复
0点赞
看得懂的都重开了
#include <iostream>
#include <cstdio>
using namespace std;
int a[105][105];
bool check(int x){
bool ct = 0;
while(x){
ct ^= x % 2;
x /= 10;
}return ct;
}
int main(){
int n, m, ct = 0;
cin >> n >> m;
for(int i = 1; i <= n; i++){
for(int j = 1; j <= m; j++){
cin >> a[i][j];
ct += check(a[i][j]);
}
}cout << ct;
return 0;
}
时间复杂度:
全部评论 1
神奇的时间复杂度
2024-09-16 来自 广东
0
有帮助,赞一个