# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
874056 | WongYiKai | Friend (IOI14_friend) | C++17 | 0 ms | 0 KiB |
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 <bits/stdc++.h>
using namespace std;
int findSample(int n, int confidence[], int host[], int protocol[]){
int n,temp,temp2,test = 0,high = 0;
for (int i=0;i<n;i++){
temp = confidence[i];
high = max(high,temp);
}
for (int i=1;i<n;i++){
if (protocol[i] != 2) test = 1;
}
if (test == 0){
return high;
}
}