티스토리 뷰
https://www.acmicpc.net/problem/17087
const fs = require('fs');
const input = fs.readFileSync("./dev/stdin").toString().trim().split('\n').map(v=>v.split(' ').map(Number));
const [N,S] = input[0]
const brother = input[1].map(v=>Math.abs(S-v));
if(N==1){
console.log(brother[0])
}else{
let gcd =GCD(brother[0],brother[1]);
for(let i = 1; i<brother.length; i++){
gcd =GCD(gcd,brother[i]);
}
console.log(gcd)
}
function GCD(a,b){
if(b==0)return a;
return a>b? GCD(b,a%b): GCD(a,b%a)
}
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js)백준 11005번: 진법 변환2 (0) | 2021.12.30 |
---|---|
Node.js)백준 17103번: 골드바흐 파티션 (0) | 2021.12.30 |
Node.js)백준 1212번: 8진수 2진수 (0) | 2021.12.30 |
Node.js)백준 1373번: 2진수 8진수 (0) | 2021.12.30 |
Node.js)백준 2089번: -2진수 (0) | 2021.12.30 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- create db
- MySQL
- 최소공통조상
- 서버개발
- 다이나믹프로그래밍
- 은둔청년체험
- 롱베케이션
- node.js
- 다이나밍프로그래밍
- 로드나인
- 그래프
- BFS
- 투포인터
- 서버점검
- 면접비
- create databases;
- DB 생성
- 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 | 31 |
글 보관함