문제보기
사용언어
Node.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | // input var input = []; // I/O module require('readline') .createInterface(process.stdin, {}) .on('line', function(line) { input.push(line.trim()); }).on('close', function() { // start code for (var i=1 ; i<input.length ; i++){ process.stdout.write(decodeURIComponent(input[i])+'\n'); } }) | cs |