Submission #86250

# Submission time Handle Problem Language Result Execution time Memory
86250 2018-11-25T15:05:12 Z MatesV13 Pohlepko (COCI16_pohlepko) C++11
0 / 80
69 ms 66560 KB
#include <bits/stdc++.h>
using namespace std;
long long n, m;
string word, path, unos[2000][2000];
int main (){
ios::sync_with_stdio(0);
cin.tie(0);
	cin >> n >> m;
	for (int i=0;i<n;i++){
		cin >> word;
		for(int j=0;j<m;j++){
		unos[i][j] = word[j];	
    	}
	}
	path = unos[0][0];
	int i=0, j=0;
	while (i!=n-1 and j!=m-1){
		if (unos[i][j+1] > unos[i+1][j]){
			i++;
			path = path + unos[i][j];
		}
		else{
			j++;
			path = path + unos[i][j];
		}
	}
	while (i!=n-1){
		i++;	
		path = path + unos[i][j];
	}
	while (j!=m-1){
		j++;
		path = path + unos[i][j];
	}
	cout << path;
return 0;
}
# Verdict Execution time Memory Grader output
1 Runtime error 65 ms 66560 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Runtime error 61 ms 66560 KB Execution killed with signal 9 (could be triggered by violating memory limits)
3 Runtime error 60 ms 66560 KB Execution killed with signal 9 (could be triggered by violating memory limits)
4 Runtime error 61 ms 66560 KB Execution killed with signal 9 (could be triggered by violating memory limits)
5 Runtime error 61 ms 66560 KB Execution killed with signal 9 (could be triggered by violating memory limits)
6 Runtime error 61 ms 66560 KB Execution killed with signal 9 (could be triggered by violating memory limits)
7 Runtime error 62 ms 66560 KB Execution killed with signal 9 (could be triggered by violating memory limits)
8 Runtime error 63 ms 66560 KB Execution killed with signal 9 (could be triggered by violating memory limits)
9 Runtime error 59 ms 66560 KB Execution killed with signal 9 (could be triggered by violating memory limits)
10 Runtime error 63 ms 66560 KB Execution killed with signal 9 (could be triggered by violating memory limits)
11 Runtime error 57 ms 66560 KB Execution killed with signal 9 (could be triggered by violating memory limits)
12 Runtime error 69 ms 66560 KB Execution killed with signal 9 (could be triggered by violating memory limits)
13 Runtime error 62 ms 66560 KB Execution killed with signal 9 (could be triggered by violating memory limits)
14 Runtime error 69 ms 66560 KB Execution killed with signal 9 (could be triggered by violating memory limits)
15 Runtime error 59 ms 66560 KB Execution killed with signal 9 (could be triggered by violating memory limits)
16 Runtime error 58 ms 66560 KB Execution killed with signal 9 (could be triggered by violating memory limits)