https://www.acmicpc.net/problem/11050 11050번: 이항 계수 1 첫째 줄에 \(N\)과 \(K\)가 주어진다. (1 ≤ \(N\) ≤ 10, 0 ≤ \(K\) ≤ \(N\)) www.acmicpc.net https://velog.io/@shanghai1109/%EB%B0%B1%EC%A4%80-11050%EB%B2%88 백준 11050번 파이썬 $$\\frac{N!}{(N-K)!(K)!} $$$$\\ {N}\\mathrm{C}{K}=\\frac{{N}\\mathrm{P}{K}}{K!} $$두 코드를 모두 실행한 결과, 2번 코드의 실행시간이 더 짧았습니다. velog.io const fs = require('fs'); const [N, K] = fs.readFileSync(..
https://www.acmicpc.net/problem/3036 3036번: 링 출력은 총 N-1줄을 해야 한다. 첫 번째 링을 제외한 각각의 링에 대해서, 첫 번째 링을 한 바퀴 돌리면 그 링은 몇 바퀴 도는지 기약 분수 형태 A/B로 출력한다. www.acmicpc.net const fs = require('fs'); const [_, input] = fs.readFileSync("./dev/stdin").toString().trim().split("\n"); const nums = input.split(' ').map(v => +v); let first = nums.shift(); nums.forEach(v => { const gcd = GCD(first, v); console.log((first..
https://www.acmicpc.net/problem/1934 1934번: 최소공배수 두 자연수 A와 B에 대해서, A의 배수이면서 B의 배수인 자연수를 A와 B의 공배수라고 한다. 이런 공배수 중에서 가장 작은 수를 최소공배수라고 한다. 예를 들어, 6과 15의 공배수는 30, 60, 90등이 있 www.acmicpc.net const fs = require('fs'); const input = fs.readFileSync("./dev/stdin").toString().trim().split("\n"); input.shift(); const nums = input.map(v => v.split(' ').map(v => +v)) nums.forEach(v => { console.log(lcm(v[0]..
https://www.acmicpc.net/problem/2609 2609번: 최대공약수와 최소공배수 첫째 줄에는 입력으로 주어진 두 수의 최대공약수를, 둘째 줄에는 입력으로 주어진 두 수의 최소 공배수를 출력한다. www.acmicpc.net const fs = require('fs'); const input = fs.readFileSync("./dev/stdin").toString().trim().split(" "); const nums = input.map(v => +v); const gcd = Euclidean(nums[0], nums[1]) console.log(gcd) const lcm = LCM(gcd, nums[0], nums[1]) console.log(lcm) function Eucli..
https://www.acmicpc.net/problem/2447 2447번: 별 찍기 - 10 재귀적인 패턴으로 별을 찍어 보자. N이 3의 거듭제곱(3, 9, 27, ...)이라고 할 때, 크기 N의 패턴은 N×N 정사각형 모양이다. 크기 3의 패턴은 가운데에 공백이 있고, 가운데를 제외한 모든 칸에 별이 www.acmicpc.net const fs = require('fs'); const [input] = fs.readFileSync("./dev/stdin").toString().trim().split(" ").map(v => +v); let Arr = Array.from(Array(input), () => Array(input).fill(' ')) function star(x, y, n, type..
https://www.acmicpc.net/problem/1037 1037번: 약수 첫째 줄에 N의 진짜 약수의 개수가 주어진다. 이 개수는 50보다 작거나 같은 자연수이다. 둘째 줄에는 N의 진짜 약수가 주어진다. 1,000,000보다 작거나 같고, 2보다 크거나 같은 자연수이고, 중복되 www.acmicpc.net const fs = require('fs'); const input = fs.readFileSync("./dev/stdin").toString().trim().split("\n"); const nums = input.map(v => v.split(' ').map(x => +x)); const factor = nums[1] if (factor.length == 1) { console.log(..
https://www.acmicpc.net/problem/5086 5086번: 배수와 약수 각 테스트 케이스마다 첫 번째 숫자가 두 번째 숫자의 약수라면 factor를, 배수라면 multiple을, 둘 다 아니라면 neither를 출력한다. www.acmicpc.net const fs = require('fs'); const input = fs.readFileSync("./dev/stdin").toString().trim().split("\n"); input.pop(); const nums = input.map(v => v.split(' ').map(x => +x)) nums.forEach(v => { if (v[1] % v[0] == 0) { console.log('factor') } else if (..
https://www.acmicpc.net/problem/10757 10757번: 큰 수 A+B 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. www.acmicpc.net const fs = require('fs'); const input = fs.readFileSync("./dev/stdin").toString().trim().split(" "); const [A, B] = input.map(v => BigInt(v)); console.log(String(A + B))
- Total
- Today
- Yesterday
- 로드나인
- 개발자면접
- 투포인터
- 다이나밍프로그래밍
- 서버점검
- BFS
- 롱베케이션
- 서버개발
- 면접비
- DB 생성
- 면접질문
- 다이나믹프로그래밍
- create databases;
- 투포인터 연습
- 그래프
- MySQL
- create db
- 최소공통조상
- 은둔청년체험
- node.js
- MOD
- 동적프로그래밍
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |