A. Team水题
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Team水题相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/231/A
#include<bits/stdc++.h>
using namespace std;
int ans;
int main(void)
{
int t; cin>>t;
while(t--)
{
int a,b,c; cin>>a>>b>>c;
int sum=a+b+c;
if(sum>=2) ans++;
}
cout<<ans;
}
以上是关于A. Team水题的主要内容,如果未能解决你的问题,请参考以下文章