์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
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 |
- ๋ฐฑ์ค 1339๋ฒ nodejs
- ๋ฐฑ์ค 2108 ์๋ฐ์คํฌ๋ฆฝํธ
- js ์ค์ฝํ
- ํ๋ก๊ทธ๋๋จธ์ค ๋ฌธ์์ด ์์ถ
- ๋ฐฑ์ค 1339๋ฒ js
- ํ๋ก๊ทธ๋๋จธ์ค ๊ฑฐ๋ฆฌ๋๊ธฐ ํ์ธํ๊ธฐ
- TypeError: createContext only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more:
- next13 emotion
- ์๋ฐ์คํฌ๋ฆฝํธ ์ค์ฝํ
- js ๋ฌธ์์ด ์์ถ
- ๋ฆฌ์กํธ์ฟผ๋ฆฌ suspense
- app router emotion
- suspense ๋์์๋ฆฌ
- ๊ตฌ๋ฆํค ์ฑ๋ฆฐ์ง
- js
- emotion RSC
- ๊ตฌ๋ฆํค
- ๊ตฌ๋ฆํค ์ฑ๋ฆฐ์ง ํ๊ณ
- js ๊ฑฐ๋ฆฌ๋๊ธฐ ํ์ธํ๊ธฐ
- emtion app router
- ์ค์ฝํ
- suspense react-query
- suspense ๋ณ๋ชฉํ์
- ์๋ฐ์คํฌ๋ฆฝํธ ๋ฌธ์์ด ์์ถ
- ์ฌ์ฉ์ฑ ๊ฐ์
- ์นด์นด์ค ์ฝํ
- ๋ฐฑ์ค 2108 nodejs
- ์ต์ ๋์ฒด์ด๋
- ๋ฐฑ์ค 1339๋ฒ ์๋ฐ์คํฌ๋ฆฝํธ
- suspense ๋น๋๊ธฐ
- Today
- Total
Lennon FE
[๋ฐฑ์ค 16917๋ฒ] ์๋ ๋ฐ ํ๋ผ์ด๋ ๋ฐ - ์๋ฐ์คํฌ๋ฆฝํธ(nodejs) ๋ณธ๋ฌธ
[๋ฐฑ์ค 16917๋ฒ] ์๋ ๋ฐ ํ๋ผ์ด๋ ๋ฐ - ์๋ฐ์คํฌ๋ฆฝํธ(nodejs)
Lennon 2022. 1. 21. 18:01https://www.acmicpc.net/problem/16917
const fs = require('fs');
let input = fs
.readFileSync('dev/stdin')
.toString()
.trim()
.split(' ')
.map((v) => +v);
let [seasoning, fried, half, seasoningCount, friedCount] = input;
let answer = 0;
let min = Math.min(seasoningCount, friedCount);
if (seasoning + fried > half * 2) {
answer += min * half * 2;
seasoningCount -= min;
friedCount -= min;
if (seasoningCount !== 0) {
if (seasoning > half * 2) {
answer += half * 2 * seasoningCount;
} else {
answer += seasoning * seasoningCount;
}
}
if (friedCount !== 0) {
if (fried > half * 2) {
answer += half * 2 * friedCount;
} else {
answer += fried * friedCount;
}
}
} else {
answer += seasoningCount * seasoning;
answer += friedCount * fried;
}
console.log(answer);
๋ธ๋ฃจํธํฌ์ค ๋ฌธ์ ์ด๋ค.
์ฐ์ (์๋ ๋ฐ+ํ๋ผ์ด๋๋ฐ) * 2 ์ ์๋ 1 + ํ๋ผ์ด๋1 ์ ๊ฐ์ ๋จผ์ ๋น๊ตํ๋ค.
์ ์๊ฐ ๋ ์ธ๋ค๋ฉด ์ต์ ์๋ ํ๋ผ์ด๋ ๊ฐ์์์ ์์ ๊ฐ์ ๋งํผ ๋ฐ๋ณตํด ๊ฐ๊ฒฉ์ ๋ํด์ค๋ค.
๊ทธ ํ (์๋ ๋ฐ+ํ๋ผ์ด๋๋ฐ) * 2์ ๊ฐ๊ฒฉ์ด ์๋ 1 ๋ณด๋ค ์ผ ์ง ํ์ธํ๋ค. ์ต์ ๊ฐ์์ด๋ฏ๋ก ๊ฐ์๊ฐ ๋์ด๋ ์๊ด์๋ค.
์ธ๋ค๋ฉด ๋ฐ๋ฐ์ผ๋ก ๋๋จธ์ง ๊ฐ์๋ฅผ ์ฑ์ฐ๊ณ ํ๋ผ์ด๋๋ ๋๊ฐ์ด ํด์ค๋ค.
(์๋ ๋ฐ+ํ๋ผ์ด๋๋ฐ) * 2 ์ ์๋ 1 + ํ๋ผ์ด๋1์์ ํ์๊ฐ ์ธ๋ค๋ฉด ๊ทธ๋ฅ ์ต์ ๊ฐ์๋งํผ ๊ฐ๊ฐ ๊ณฑํด์ฃผ๋ฉด ๋๋๋ค.
์ด ๋ฌธ์ ์ ํต์ฌ์ (์๋ ๋ฐ+ํ๋ผ์ด๋๋ฐ) * 2์ ๊ฐ๊ฒฉ์ด ์๋ 1 or ํ๋ผ์ด๋1๋ณด๋ค ์ผ ์ง ํ์ธํ๋ ๊ฒ์ด์๋ค.
'๐ฅ Algorithm > Baekjoon' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[๋ฐฑ์ค 1946๋ฒ] ์ ์ ์ฌ์ - ์๋ฐ์คํฌ๋ฆฝํธ(nodejs) (0) | 2022.01.21 |
---|---|
[๋ฐฑ์ค 1747๋ฒ] ์์&ํฐ๋ฆฐ๋๋กฌ - ์๋ฐ์คํฌ๋ฆฝํธ(nodejs) (0) | 2022.01.21 |
[๋ฐฑ์ค 17298๋ฒ] ์คํฐ์ - ์๋ฐ์คํฌ๋ฆฝํธ(nodejs) (0) | 2022.01.21 |
[๋ฐฑ์ค 4949๋ฒ] ๊ท ํ์กํ ์ธ์ - ์๋ฐ์คํฌ๋ฆฝํธ(nodejs) (0) | 2022.01.20 |
๋ฐฑ์ค nodejs ์ ๋ ฅํ๋ ๋ฐฉ๋ฒ / ๋ฐฑ์ค ์๋ฐ์คํฌ๋ฆฝํธ ์ ๋ ฅ (0) | 2022.01.20 |