This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "friend.h"
#include <bits/stdc++.h>
using namespace std;
int subtask1(int n,int confidence[],int host[],int protocol[])
{
return -1;
}
int subtask2(int n,int confidence[],int host[],int protocol[])
{
int ans=0;
for(int i=0;i<n;i++)
{
ans+=confidence[i];
}
return ans;
}
int subtask3(int n,int confidence[],int host[],int protocol[])
{
int ans=0;
for(int i=0;i<n;i++)
{
ans=max(ans,confidence[i]);
}
return ans;
}
int subtask4(int n,int confidence[],int host[],int protocol[])
{
return -1;
}
int findSample(int n,int confidence[],int host[],int protocol[])
{
/*if(n<=10)
{
return subtask1(n,confidence,host,protocol);
}*/
if(protocol[1]==1)
{
return subtask2(n,confidence,host,protocol);
}
if(protocol[1]==2)
{
return subtask3(n,confidence,host,protocol);
}
if(protocol[1]==0)
{
return subtask4(n,confidence,host,protocol);
}
bool oopsie=0;
assert(oopsie);
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |