We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f4ba06 commit 8bbc696Copy full SHA for 8bbc696
2 files changed
백준/Bronze/2557. Hello World/Hello World.js
@@ -1 +1,5 @@
1
-console.log("Hello World!")
+// /dev/stdin
2
+const fs = require("fs");
3
+let input = fs.readFileSync("/dev/stdin").toString().trim().split("\n");
4
+
5
+console.log("Hello World!");
백준/Bronze/2557. Hello World/README.md
@@ -4,15 +4,15 @@
### 성능 요약
6
7
-메모리: 9276 KB, 시간: 104 ms
+메모리: 9308 KB, 시간: 88 ms
8
9
### 분류
10
11
구현
12
13
### 제출 일자
14
15
-2024년 6월 4일 16:24:12
+2025년 4월 24일 19:13:42
16
17
### 문제 설명
18
0 commit comments