# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
89026 | nika | Luxury burrow (IZhO13_burrow) | C++14 | 2 ms | 376 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;
long long int z[1000][1000],k=9999999999999999999999999,a,b,c,f=0,d,e,g=0,h,i;
int main()
{
cin>>a>>b>>c;
for(i=1;i<=a;i++){
for(d=1;d<=b;d++){
cin>>z[i][d];
k=min(k,z[i][d]);
if((f<=z[i][d]) && (z[i][d]<c) && (g==0)){
f=z[i][d];
}
if(z[i][d]>c){
g++;
}
}}
i=1;
h=f;
if(g==0){
while(f<c){
f=f*i;
i++;
if(f<c){
f=h;
}
}
cout<<i-1<<" "<<f;
return 0;
}
if(g!=0){
h=k;
while(k<c){
k=k*i;
i++;
if(k<c){
k=h;
}
}
cout<<i-1<<" "<<k;
return 0;
}
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |