Skip to content

Commit 9be7f8c

Browse files
committed
01.27: implementation(Serca)
1 parent dead449 commit 9be7f8c

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

baekjoon/26766.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// Serca : 구현
2+
const n = +require("fs").readFileSync(0, "utf8").trim();
3+
const string = ` @@@ @@@
4+
@ @ @ @
5+
@ @ @
6+
@ @
7+
@ @
8+
@ @
9+
@ @
10+
@ @
11+
@ `;
12+
const answer = [];
13+
14+
for (let i = 0; i < n; i++) {
15+
answer.push(string);
16+
}
17+
console.log(answer.join("\n"));

0 commit comments

Comments
 (0)