CSES - Datatähti 2020 alku - Results
Submission details
Task:Ruudukko
Sender:Affax
Submission time:2019-09-30 15:51:36 +0300
Language:Node.js
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#1ACCEPTED0.43 sdetails
#20.43 sdetails
#30.43 sdetails
#40.43 sdetails
#50.43 sdetails
#60.43 sdetails

Code

var readline = require('readline');

var r = readline.createInterface({
	input: process.stdin,
	output: process.stdout,
	terminal: false
});

r.on('line', function(line) {
	var input = parseInt(line);
	var inputM = input - 1;

	var posses = [];
	for (var y = 0; y < input; y++) {
		posses[y] = [];
		for (var index = 0; index < input; index++) {
			posses[y][index] = 'x';
		}
	}

	for (y = 0; y < input; y++) {
		var left = y;
		var right = inputM - y;
		var direction = y % 2 == 0;
		var isRetarted = input % 2 != 0;

		for (var x = 0; x < right; x++) {
			add(y + 1 + x, y, x + 2);
		}

		for (x = 0; x < left; x++) {
			add(y - 1 - x, y, input - x);
		}

		add(y, y, '1');
	}

	for (y = 0; y < input; y++) {
		var str = '';
		for (var x = 0; x < input; x++) {
			str += posses[y][x];
		}
		console.log(str);
	}

	function add(x, y, str) {
		posses[y][x] = str;
	}

	function sub(str) {
		return str.substring(0, str.length);
	}
});

Test details

Test 1

Verdict: ACCEPTED

input
1

correct output

user output
1

Test 2

Verdict:

input
2

correct output
1 2 
2 1 

user output
12
21

Test 3

Verdict:

input
5

correct output
1 2 3 4 5 
2 1 4 3 6 
3 4 1 2 7 
4 3 2 1 8 
5 6 7 8 1 

user output
12345
51234
45123
34512
23451

Test 4

Verdict:

input
42

correct output
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

user output
123456789101112131415161718192...

Test 5

Verdict:

input
99

correct output
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

user output
123456789101112131415161718192...

Test 6

Verdict:

input
100

correct output
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

user output
123456789101112131415161718192...