Algorithm13 [백준|Baekjoon] C++ / 10951: A + B - 4 https://www.acmicpc.net/problem/10951 10951번: A+B - 4 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오. www.acmicpc.net 작성언어: C++ 작성날짜: 2020.08.08 #include using namespace std; int main() { int a, b; while(true){ cin >> a >> b; if (cin.eof()==true) break; //cin.eof() 는 cin으로 입력받은 값이 없으면 true 반환 else cout 2022. 8. 9. [백준|Baekjoon] C++ / 10871: X보다 작은 수 https://www.acmicpc.net/problem/10871 10871번: X보다 작은 수 첫째 줄에 N과 X가 주어진다. (1 ≤ N, X ≤ 10,000) 둘째 줄에 수열 A를 이루는 정수 N개가 주어진다. 주어지는 정수는 모두 1보다 크거나 같고, 10,000보다 작거나 같은 정수이다. www.acmicpc.net 작성언어: C++ 작성날짜: 2020.08.08 #include using namespace std; int main() { int n, x; cin >> n >> x; int* arr = new int[n]; if ((n 10000) && (x 10000)) return 0; for (int i = 0; i > arr.. 2022. 8. 9. [프로그래머스]Level2 주식가격<java> 문제 https://programmers.co.kr/learn/courses/30/lessons/42584 코딩테스트 연습 - 주식가격 초 단위로 기록된 주식가격이 담긴 배열 prices가 매개변수로 주어질 때, 가격이 떨어지지 않은 기간은 몇 초인지를 return 하도록 solution 함수를 완성하세요. 제한사항 prices의 각 가격은 1 이상 10,00 programmers.co.kr 문제 풀이 .java import java.util.*; class Solution { public int[] solution(int[] prices) { int[] answer = {}; List answers = new ArrayList(); for (int i = 0; i < prices.length; i++).. 2022. 2. 18. [프로그래머스]Level2 기능개발 <java> 문제 : https://programmers.co.kr/learn/courses/30/lessons/42586 코딩테스트 연습 - 기능개발 프로그래머스 팀에서는 기능 개선 작업을 수행 중입니다. 각 기능은 진도가 100%일 때 서비스에 반영할 수 있습니다. 또, 각 기능의 개발속도는 모두 다르기 때문에 뒤에 있는 기능이 앞에 있는 programmers.co.kr 내가 짠 코드 (.java) import java.util.*; class Solution { public int[] solution(int[] progresses, int[] speeds) { int[] answer = {}; int count = 1; int cur = 0; List days = new ArrayList(); List answ.. 2022. 2. 18. 이전 1 2 다음