문제를 직접 풀어보실 경우 여기를 클릭해 주세요.
문제 설명
문자열 str
이 주어질 때, str
을 출력하는 코드를 작성해 보세요.
제한사항
- 1 ≤
str
의 길이 ≤ 1,000,000 str
에는 공백이 없으며, 첫째 줄에 한 줄로만 주어집니다.
입출력 예
입력 #1
class="codehilite">
HelloWorld!
출력 #1
class="codehilite">
HelloWorld!
문제 풀이
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
let input = [];
rl.on('line', function (line) {
input = [line];
}).on('close',function(){
str = input[0];
console.log(str);
});
성능 요약
메모리: 32.2 MB
시간: 46.38 ms