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

Function main

CodeChef_problems/Chef and Street Food/solution.cpp:9–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7using namespace std;
8void solve();
9int main()
10{
11 ios::sync_with_stdio(0);
12 cin.tie(0);
13 int tcases;
14 cin>>tcases;
15 while(tcases)//To run for all the test cases
16 {
17 solve();
18 --tcases;
19 }
20 return 0;
21}
22void solve()
23{
24 long long int typesOfFood, shops, price, people, max=0, temp;

Callers

nothing calls this directly

Calls 1

solveFunction · 0.70

Tested by

no test coverage detected