add codeforces solutions folder

This commit is contained in:
2026-03-05 19:55:52 +05:30
parent 77ff815f38
commit e698c35654
20 changed files with 778 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
int count = 0;
for(int i = 0; i < n; i++) {
int a, b, c;
cin >> a >> b >> c;
if(a + b + c >= 2) {
count++;
}
}
cout << count << endl;
return 0;
}