Submission #89026

# Submission time Handle Problem Language Result Execution time Memory
89026 2018-12-10T08:33:29 Z nika Luxury burrow (IZhO13_burrow) C++14
0 / 100
2 ms 376 KB
#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

burrow.cpp:4:31: warning: integer constant is too large for its type
 long long int z[1000][1000],k=9999999999999999999999999,a,b,c,f=0,d,e,g=0,h,i;
                               ^~~~~~~~~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 376 KB Output isn't correct
2 Halted 0 ms 0 KB -