Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 백준 1339번 nodejs
- js 스코프
- suspense 병목현상
- js
- TypeError: createContext only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more:
- 백준 2108 자바스크립트
- 백준 1339번 자바스크립트
- 구름톤
- suspense react-query
- 자바스크립트 스코프
- 프로그래머스 거리두기 확인하기
- 카카오 코테
- suspense 비동기
- app router emotion
- emtion app router
- 자바스크립트 문자열 압축
- 프로그래머스 문자열 압축
- 스코프
- 백준 1339번 js
- 리액트쿼리 suspense
- 사용성 개선
- 구름톤 챌린지
- js 거리두기 확인하기
- next13 emotion
- js 문자열 압축
- suspense 동작원리
- emotion RSC
- 옵셔널체이닝
- 구름톤 챌린지 회고
- 백준 2108 nodejs
Archives
- Today
- Total
목록16917 js (1)
Lennon FE
[백준 16917번] 양념 반 후라이드 반 - 자바스크립트(nodejs)
https://www.acmicpc.net/problem/16917 16917번: 양념 반 후라이드 반 현진 치킨에서 판매하는 치킨은 양념 치킨, 후라이드 치킨, 반반 치킨으로 총 세 종류이다. 반반 치킨은 절반은 양념 치킨, 절반은 후라이드 치킨으로 이루어져있다. 양념 치킨 한 마리의 가격은 www.acmicpc.net 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..
🔥 Algorithm/Baekjoon
2022. 1. 21. 18:01