# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
89008 | 2018-12-10T08:12:24 Z | nika | 호화 벙커 (IZhO13_burrow) | C++14 | 2 ms | 376 KB |
#include <bits/stdc++.h> using namespace std; long long int z[1000][1000],a,b,c,d,e,f=1,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]; if((f<=z[i][d]) && (z[i][d]<c)){ f=z[i][d]; } }} i=1; h=f; while(f<c){ f=f*i; i++; if(f<c){ f=h; } } cout<<i-1<<" "<<f; return 0; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |