Submission #420976

#TimeUsernameProblemLanguageResultExecution timeMemory
420976ioiTracks in the Snow (BOI13_tracks)C++14
0 / 100
1091 ms31624 KiB
#include<bits/stdc++.h>
using namespace std ;


int h , w ;
char arr[4010][4010];

int main(){

    cin >> h >> w ;
    
    
    
    for(int i = 0 ; i < h ; i ++)
        for(int j = 0 ;j < w ; j ++)
            cin >> arr[i][j];
    
    
    cout << 2 ;

}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...