본문 바로가기

Algorithm/Implementation

(750)
(C++) - 백준(BOJ) 21633 : Bank Transfer https://www.acmicpc.net/problem/21633 21633번: Bank Transfer Tanya has an account in "Redgotts" bank. The bank has the commission to transfer money to "Bluegotts" bank that her friend Vanya has the account in. Tanya has read her bank rules and learned the following: The commission for the bank transfer is $25$ tugri www.acmicpc.net 입출력과 if문을 사용해보는 문제였습니다. 📕 풀이방법 📔 입력 및 초기화 송금액 k, 정답을 출력할 변수 ans를 ..
(C++) - 백준(BOJ) 21612 : Boiling Water https://www.acmicpc.net/problem/21612 21612번: Boiling Water At sea level, atmospheric pressure is 100 kPa and water begins to boil at 100◦C. As you go above sea level, atmospheric pressure decreases, and water boils at lower temperatures. As you go below sea level, atmospheric pressure increases, and water boils www.acmicpc.net 간단한 구현문제였습니다. 📕 풀이방법 📔 입력 및 초기화 끓는점 b, 공기압 p를 선언 후 b에 입력 해줍니다. 📔 풀이과..
(C++) - 백준(BOJ) 21631 : Checkers https://www.acmicpc.net/problem/21631 21631번: Checkers The only line of input contains two integers $a$ and $b$ --- the number of white and black pieces, respectively ($0 \le a, b \le 10^{18}$). www.acmicpc.net if문을 사용해보는 문제였습니다. 📕 풀이방법 📔 입력 및 초기화 white, black를 선언하고 입력받습니다. 📔 풀이과정 1. white >= black인 경우 black을 모두 사용할 수 있습니다. 흰색과 검은색을 번갈아 놓으면 되기 때문입니다. 따라서 black을 출력해줍니다. 2. 그 외의 경우는 white를 모두 사용해도..
(C++) - 백준(BOJ) 21598 : SciComLove https://www.acmicpc.net/problem/21598 21598번: SciComLove 당신은 싸이컴을 향해 절을 하려고 합니다. 하지만, 당신이 싸이컴에 들어오고 싶어서 절을 한 번 할 수도 있고, 싸이컴을 매우 싫어해 절을 두 번 할 수도 있습니다. 당신이 절을 할 횟수가 주어 www.acmicpc.net for문을 사용해보는 문제였습니다. 📕 풀이방법 📔 입력 및 초기화 출력횟수 n을 선언 후 입력받습니다. 📔 정답출력 n만큼 "SciComLove"를 출력해줍니다. 📕 Code #include using namespace std; int n; int main(){ cin >> n; for(int i = 0; i < n; i++) cout
(C++) - 백준(BOJ) 21591 : Laptop Sticker https://www.acmicpc.net/problem/21591 21591번: Laptop Sticker The single line of input contains four integers $w_c$, $h_c$, $w_s$ and $h_s$ ($1 \le w_c, h_c, w_s, h_s \le 1,000$), where $w_c$ is the width of your new laptop computer, $h_c$ is the height of your new laptop computer, $w_s$ is the width of the laptop s www.acmicpc.net 눈치껏 때려맞히는 문제였습니다. 📕 풀이방법 📔 입력 및 초기화 새로산 노트북의 w, h와 스티커의 w, h를 선언 ..
(C++) - 백준(BOJ) 21354 : Äpplen och päron https://www.acmicpc.net/problem/21354 21354번: Äpplen och päron En rad med två heltal $A,P$ ($0 \le A,P \le 1000)$, antalet äpplen Axel har lyckats sälja, och antalet päron Petra har lyckats sälja. www.acmicpc.net if문을 써보는 문제였습니다. 📕 풀이방법 📔 입력 및 초기화 판 사과의 개수 apple, 판 배의 개수 pear, axel의 매출 axel, petra의 매출 petra를 선언하고 apple, pear에 입력받습니다. 📔 풀이과정 사과 1개당 7, 배 1개당 13이므로 axel = apple * 7, petra = pear * ..
(C++) - 백준(BOJ) 20673 : Covid-19 https://www.acmicpc.net/problem/20673 20673번: Covid-19 The input consists of two lines. The first line contains an integer p (0 ⩽ p ⩽ 1000), showing the average number of new cases per day in every one million population in Hana’s city over the past two weeks. The second line contains an integer q (0 ⩽ www.acmicpc.net 입출력, 함수, if문을 사용해 푼 문제였습니다. 📕 풀이방법 📔 입력 및 초기화 2주간 확진자 수 newCases, 환자 수 newHosp..
(C++) - 백준(BOJ) 20839 : Betygsättning https://www.acmicpc.net/problem/20839 20839번: Betygsättning På första raden står tre heltal $1 \leq x \leq 30$, $1 \leq y \leq 30$ och $1 \leq z \leq 30$, antalet A-, C- och E-kriterier som finns. På den andra raden står tre heltal $0 \leq x' \leq x$, $0 \leq y' \leq y$ och $0 \leq z' \leq z$, antalet A-, C- o www.acmicpc.net 입출력, 함수, if문을 사용해 푼 문제였습니다. 📕 풀이방법 📔 입력 및 초기화 a기준, c기준, e기준 점수, 각 기준을 ..