Submission #7490

#TimeUsernameProblemLanguageResultExecution timeMemory
7490gs14004행성 탐사 (GA8_planet)C++98
0 / 100
36 ms1756 KiB
#include "planet.h"
void ainta() {
    for(int i=0; i<2222; i++){
        paint(0,i);
    }
    for(int i=0; i<2222; i++){
        paint(i,0);
    }
}

void sangsoo() {
    int resx;
    for(int i=0; i<2222; i++){
        if(count_row(i)){
            resx = i;
        }
    }
    for(int i=0; i<2222; i++){
        if(count_col(i) > 1){
            report(resx,i);
            break;
        }
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...