CSES - Datatähti 2020 alku - Results
Submission details
Task:Ruudukko
Sender:Affax
Submission time:2019-09-30 07:49:55 +0300
Language:Node.js
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.42 sdetails
#20.42 sdetails
#30.42 sdetails
#40.42 sdetails
#50.42 sdetails
#60.42 sdetails

Code

var v = parseInt(process.argv[2]);

for (var y = 0; y < v; y++) {
	var str = '';
	for (var x = 0; x < v; x++) {
		if (x == y) {
			str += 1;
		} else {
			str += x + 1 + y;
		}
	}
	console.log(str);
}

Test details

Test 1

Verdict:

input
1

correct output

user output
(empty)

Test 2

Verdict:

input
2

correct output
1 2 
2 1 

user output
(empty)

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
(empty)

Test 4

Verdict:

input
42

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

user output
(empty)

Test 5

Verdict:

input
99

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

user output
(empty)

Test 6

Verdict:

input
100

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

user output
(empty)