# [Algorithm/JS] ๋ฐฑ์ค 10950๋ฒ N ์ฐ๊ธฐ
๐ ๋ฌธ์ ๋ฐ๋ก๊ฐ๊ธฐ (opens new window)
# Question
์์ฐ์ N์ด ์ฃผ์ด์ก์ ๋, 1๋ถํฐ N๊น์ง ํ ์ค์ ํ๋์ฉ ์ถ๋ ฅํ๋ ํ๋ก๊ทธ๋จ์ ์์ฑํ์์ค.
# Input
์ฒซ์งธ ์ค์ 100,000๋ณด๋ค ์๊ฑฐ๋ ๊ฐ์ ์์ฐ์ N์ด ์ฃผ์ด์ง๋ค.
# Output
์ฒซ์งธ ์ค๋ถํฐ N๋ฒ์งธ ์ค ๊น์ง ์ฐจ๋ก๋๋ก ์ถ๋ ฅํ๋ค.
# Example
# Input
5
1
# Output
1
2
3
4
5
1
2
3
4
5
2
3
4
5
# Solution
15552 ๋น ๋ฅธ A+B (opens new window) ๋ฅผ ์์ฉํ ์ ์๋ ๋ฌธ์ ๋ค. ์๋ ์ฝ๋์ ๊ฐ์ด for ๋ฌธ ๋ด์์ ์ถ๋ ฅํ๋ฉด ์๊ฐ์ด ์ด๊ณผ๋์ด ์คํจํ๋ค.
const input = require('fs').readFileSync('dev/stdin').toString();
for (let i = 1; i <= input; i++) {
console.log(i);
}
1
2
3
4
2
3
4
# ๋ฌธ์ ํด๊ฒฐ
๋ง์ง๋ง์ ํ ๋ฒ๋ง ์ถ๋ ฅํ๋ ๋ฐฉ์๊ณผ ๊ฐํ๋ฌธ์๋ฅผ ํ์ฉํด ๋น ๋ฅธ ์๊ฐ์ด๊ณผ ์์ด ๋น ๋ฅธ ์ถ๋ ฅ์ด ๊ฐ๋ฅํ๋ค.
const input = require('fs').readFileSync('dev/stdin').toString();
let answer = '';
for (let i = 1; i <= input; i++) {
answer += i + '\n';
}
console.log(answer);
1
2
3
4
5
6
2
3
4
5
6
๊ฒฐ๊ณผ๋ ์ฑ๊ณต!
โ 15552๋ฒ ๋น ๋ฅธ A+B 2742๋ฒ ๊ธฐ์ฐ N โ