일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Operating System
- inflearn
- 10026번
- HTTP
- redis
- FIFO paging
- n타일링2
- 2475번
- 이펙티브코틀린
- Spring
- BOJ
- 김영한
- 열혈 TCP/IP 소켓 프로그래밍
- 스프링 핵심 원리
- 우아한 테크 세미나
- 제프리리처
- 우아한레디스
- C++
- OS
- 토마토
- 윤성우 저자
- 스프링 입문
- Operating System.
- Window-Via-c/c++
- Four Squares
- TCP/IP
- 에러핸들링
- 열혈 tcp/ip 프로그래밍
- C#
- 운영체제
- Today
- Total
목록알고리즘 (112)
나의 브을로오그으
#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(NULL); int nArr[5] = { 0, }; unsigned int varifyNum = 0; for (int i = 0; i > nArr[i]; varifyNum += nArr[i] * nArr[i]; } cout
https://www.acmicpc.net/problem/2439 2439번: 별 찍기 - 2 첫째 줄에는 별 1개, 둘째 줄에는 별 2개, N번째 줄에는 별 N개를 찍는 문제 하지만, 오른쪽을 기준으로 정렬한 별(예제 참고)을 출력하시오. www.acmicpc.net #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(NULL); int N = 0; cin >> N; for (int i = 0; i = 0; --j) { cout
https://www.acmicpc.net/problem/2438 2438번: 별 찍기 - 1 첫째 줄에는 별 1개, 둘째 줄에는 별 2개, N번째 줄에는 별 N개를 찍는 문제 www.acmicpc.net #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(NULL); int N = 0; cin >> N; for (int i = 0; i < N; ++i) { for (int j = 0; j < i + 1; ++j) { cout
https://www.acmicpc.net/problem/1546 1546번: 평균 첫째 줄에 시험 본 과목의 개수 N이 주어진다. 이 값은 1000보다 작거나 같다. 둘째 줄에 세준이의 현재 성적이 주어진다. 이 값은 100보다 작거나 같은 음이 아닌 정수이고, 적어도 하나의 값은 0보 www.acmicpc.net #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(NULL); int N; cin >> N; int* nArr = new int[N]; int nMax = 0; int nSum = 0; for (int i = 0; i > nArr[i]; if (nMax < nArr[i]..
https://www.acmicpc.net/problem/1330 1330번: 두 수 비교하기 두 정수 A와 B가 주어졌을 때, A와 B를 비교하는 프로그램을 작성하시오. www.acmicpc.net #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(NULL); int nData1 = 0; int nData2 = 0; string strOutput = ""; // input cin >> nData1 >> nData2; // output if (nData1 > nData2) { strOutput = ">"; } else if (nData1 < nData2) { strOutput = "
https://www.acmicpc.net/problem/1152 1152번: 단어의 개수 첫 줄에 영어 대소문자와 공백으로 이루어진 문자열이 주어진다. 이 문자열의 길이는 1,000,000을 넘지 않는다. 단어는 공백 한 개로 구분되며, 공백이 연속해서 나오는 경우는 없다. 또한 문자열 www.acmicpc.net #include #include #define TRIM_SIGN" \t\n\r\v\f" inline std::string& lTrim(std::string& str, const char* drop = TRIM_SIGN) { str.erase(0, str.find_first_not_of(drop)); return str; } inline std::string& rTrim(std::string&..
https://www.acmicpc.net/problem/1008 1008번: A/B 두 정수 A와 B를 입력받은 다음, A/B를 출력하는 프로그램을 작성하시오. www.acmicpc.net #include #include using namespace std; int problem_1008() { ios::sync_with_stdio(false); cin.tie(NULL); cout > A >> B; cout
https://www.acmicpc.net/problem/1001 1001번: A-B 두 정수 A와 B를 입력받은 다음, A-B를 출력하는 프로그램을 작성하시오. www.acmicpc.net #include using namespace std; int problem_1001() { ios::sync_with_stdio(false); cin.tie(NULL); int A; int B; cin >> A >> B; cout
https://www.acmicpc.net/problem/2558 2558번: A+B - 2 첫째 줄에 A, 둘째 줄에 B가 주어진다. (0 > A; cin >> B; cout