Task: | Ruudukko |
Sender: | Affax |
Submission time: | 2019-09-30 15:56:03 +0300 |
Language: | Node.js |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.43 s | details |
#2 | ACCEPTED | 0.43 s | details |
#3 | WRONG ANSWER | 0.43 s | details |
#4 | WRONG ANSWER | 0.43 s | details |
#5 | WRONG ANSWER | 0.43 s | details |
#6 | WRONG ANSWER | 0.43 s | details |
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 (var 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 |
---|
1 |
user output |
---|
1 |
Test 2
Verdict: ACCEPTED
input |
---|
2 |
correct output |
---|
1 2 2 1 |
user output |
---|
1 2 2 1 |
Test 3
Verdict: WRONG ANSWER
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 |
---|
1 2 3 4 5 5 1 2 3 4 4 5 1 2 3 3 4 5 1 2 2 3 4 5 1 |
Test 4
Verdict: WRONG ANSWER
input |
---|
42 |
correct output |
---|
1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
user output |
---|
1 2 3 4 5 6 7 8 9 10 11 12 13 ... Truncated |
Test 5
Verdict: WRONG ANSWER
input |
---|
99 |
correct output |
---|
1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
user output |
---|
1 2 3 4 5 6 7 8 9 10 11 12 13 ... Truncated |
Test 6
Verdict: WRONG ANSWER
input |
---|
100 |
correct output |
---|
1 2 3 4 5 6 7 8 9 10 11 12 13 ... |
user output |
---|
1 2 3 4 5 6 7 8 9 10 11 12 13 ... Truncated |