https://www.acmicpc.net/problem/28235 28235번: 코드마스터 2023 송도고등학교에서 주최하는 첫 중고등학생 대상 알고리즘 대회, "코드마스터 2023"이 열렸다! 이 대회가 중고등학생들에게 인기 있는 알고리즘 대회이자 오프라인 이벤트로서 자리매김할 수 있 www.acmicpc.net const input = require('fs').readFileSync('./dev/stdin').toString().trim(); const cheer = { SONGDO: 'HIGHSCHOOL', CODE: 'MASTER', 2023: '0611', ALGORITHM: 'CONTEST', }; console.log(cheer[input]);
https://www.acmicpc.net/problem/29812 29812번: 아니 이게 왜 안 돼 과제를 하다가 잔뜩 화가 난 김한양은 분노 조절을 위해 메모장을 열어서 키보드를 내려치기 시작했다. 메모장에는 알파벳으로만 이루어진 알 수 없는 문자열이 생겼지만, 이상하게도 H, Y, U 세 www.acmicpc.net const [_N, S, DM] = require('fs') .readFileSync('./dev/stdin') .toString() .split('\n') .map((v) => v.trim()); const N = +_N; const [D, M] = DM.split(' ').map(Number); let H = 0; let Y = 0; let U = 0; let erase = 0; ..
https://www.acmicpc.net/problem/29808 29808번: 너의 수능 점수가 궁금해 7번의 수능 끝에 한양대학교 23학번으로 입학하게 된 김한양은 당신의 도움으로 무사히 수강신청을 하고 즐거운 대학생활을 시작할 수 있었다. 즐거운 대학 생활을 만끽하던 김한양은 한양대학 www.acmicpc.net const input = +require('fs').readFileSync('./dev/stdin').toString(); const temp = input / 4763; if (Math.floor(temp) != temp) { console.log(0); process.exit(); } const answer = []; for (let i = 0; i
https://www.acmicpc.net/problem/29807 29807번: 학번을 찾아줘! 첫째 줄에 김한양이 응시한 과목 수를 나타내는 정수 $T (1 \leq T \leq 5)$가 주어진다. 둘째 줄에 각 과목의 표준점수를 나타내는 $T$개의 정수가 공백으로 구분되어 주어진다. 점수는 국어, 수학, 영 www.acmicpc.net const [[N], score] = require('fs') .readFileSync('./dev/stdin') .toString() .trim() .split('\n') .map((v) => v.trim().split(' ').map(Number)); let num = 0; while (score.length < 5) { score.push(0); } if (sc..
https://www.acmicpc.net/problem/29790 29790번: 임스의 메이플컵 첫 번째 줄에 메이플컵에 지원한 지원자의 문제 해결 개수 $N$과 유니온 레벨 $U$, 최고 레벨 $L$이 공백을 사이에 두고 주어진다. $(1 \le N \le 130\,000;$ $1 \le U \le 12\,500;$ $1 \le L \le 300)$ 입력은 모두 정 www.acmicpc.net const [N, U, L] = require('fs').readFileSync('./dev/stdin').toString().trim().split(' ').map(Number); if (N >= 1000 && (U >= 8000 || L >= 260)) { console.log(`Very Good`); } ..
https://www.acmicpc.net/problem/22234. 22234번: 가희와 은행 가희는 창구가 하나인 은행을 운영하고 있습니다. 가희의 은행이 영업을 시작했을 때, 대기 줄에는 손님이 N명 있습니다. [그림 1] 카운터 직원과 N명의 손님 x번 손님에 대한 정보는 x번 손님의 www.acmicpc.net class Node { constructor(item) { this.item = item; this.next = null; } } class Queue { constructor() { this.head = null; this.tail = null; this.length = 0; } push(item) { const node = new Node(item); if (this.head == n..
https://www.acmicpc.net/problem/20157 20157번: 화살을 쏘자! 호준이는 요즘 활 쏘기에 푹 빠져 있다. 열심히 활 쏘기를 연습하던 호준이는 쏠 때 마다 10점이 나오는 경지에 이르렀다. 이렇다 보니 한 방향으로 있는 과녁에 쏘는 것에 실증을 느낀 호준이는 www.acmicpc.net const [N, ...targets] = require('fs') .readFileSync('./dev/stdin') .toString() .trim() .split('\n') .map((v) => v.split(' ').map(Number)); const getGCD = (num1, num2) => { while (num2 > 0) { let r = num1 % num2; num1 = n..
https://www.acmicpc.net/problem/17839 17839번: Baba is Rabbit Baba에 명령을 한 번 이상 적용한 결과로 나올 수 있는 사물을 사전순으로 출력한다. 단, 적용할 수 있는 명령이 없다면, 아무것도 출력하지 않는다. www.acmicpc.net class Node { constructor(item) { this.item = item; this.next = null; } } class Queue { constructor() { this.head = null; this.tail = null; this.length = 0; } push(item) { const node = new Node(item); if (this.head == null) { this.head =..
- Total
- Today
- Yesterday
- 면접비
- create databases;
- 면접질문
- 은둔청년체험
- 최소공통조상
- 동적프로그래밍
- 다이나믹프로그래밍
- 다이나밍프로그래밍
- 로드나인
- MySQL
- MOD
- 개발자면접
- create db
- 롱베케이션
- 서버개발
- 투포인터 연습
- node.js
- 그래프
- BFS
- DB 생성
- 서버점검
- 투포인터
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |