MCPcopy Create free account
hub / github.com/Vishruth-S/CompetitiveCode / main

Function main

Codeforces_problems/Team/solution.cpp:21–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19}
20
21int main(){
22 ios::sync_with_stdio(0);
23 cin.tie(0);
24 int tests,count = 0;
25 cin >> tests; // taking the number of test cases as input
26 while(tests--){
27 count += solve(); // incrementing the variable count which signifies the number of test cases which returned true (the required answer)
28 }
29 cout << count;
30}

Callers

nothing calls this directly

Calls 1

solveFunction · 0.70

Tested by

no test coverage detected