티스토리 뷰
https://www.acmicpc.net/problem/29734
.
const [[N, M], [T, S]] = require('fs')
.readFileSync('./dev/stdin')
.toString()
.trim()
.split('\n')
.map((v) => v.split(' ').map(Number));
let Zip = 0;
const zShare = Math.floor(N / 8);
const zRemainder = N % 8;
Zip += zShare * (8 + S);
if (zRemainder != 0) {
Zip += zRemainder;
} else {
Zip -= S;
}
let Dok = 0;
const dShare = Math.floor(M / 8);
const dRemainder = M % 8;
Dok += dShare * (8 + S + T + T);
if (dRemainder != 0) {
Dok += dRemainder + T;
} else {
Dok -= S + T;
}
if (Zip < Dok) {
console.log(`Zip\n${Zip}`);
} else {
console.log(`Dok\n${Dok}`);
}
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 29735번: 택배가 안와잉 (0) | 2023.09.11 |
---|---|
Node.js) 백준 29716번: 풀만한 문제 (0) | 2023.09.11 |
Node.js) 백준 29725번: 체스 초보 브실이 (0) | 2023.09.11 |
Node.js) 백준 29731번: 2033년 밈 투표 (0) | 2023.09.11 |
Node.js) 백준 29724번: 🍎📦 '사과상자'에 들어있는 것은 무엇? 현금? (0) | 2023.09.11 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 다이나믹프로그래밍
- 동적프로그래밍
- DB 생성
- 서버점검
- create databases;
- 서버개발
- 그래프
- 면접비
- create db
- 투포인터
- 다이나밍프로그래밍
- 롱베케이션
- BFS
- 투포인터 연습
- 은둔청년체험
- 개발자면접
- 면접질문
- MOD
- 로드나인
- node.js
- MySQL
- 최소공통조상
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함