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

Function main

CodeChef_problems/Multiple of 3/solution.cpp:12–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10using namespace std;
11void solve();
12int main()
13{
14 ios::sync_with_stdio(0);
15 cin.tie(0);
16 int tcases;
17 cin>>tcases;
18 while(tcases) //To run all the test cases
19 {
20 solve();
21 --tcases;
22 }
23 return 0;
24}
25void solve()
26{
27 long long int noOfDigits, first, second, sum=0, remaining, arr[4], temp;

Callers

nothing calls this directly

Calls 1

solveFunction · 0.70

Tested by

no test coverage detected