일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- vector
- 시스템프로그래밍
- 통계학
- 아두이노 소스
- LineTracer
- WinAPI
- list
- Algorithm
- html
- Visual Micro
- Array
- Stack
- map
- 운영체제
- set
- 아두이노
- directx
- Deque
- 라인트레이서
- c++
- 수광 소자
- queue
- arduino compiler
- 자료구조
- 컴퓨터 그래픽스
- stl
- priority_queue
- C언어
- Arduino
- 아두이노 컴파일러
- Today
- Total
목록SW ExpertAcademy/D1 (19)
Kim's Programming
2072. 홀수만 더하기문제출처: https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QSEhaA5sDFAUq&categoryId=AV5QSEhaA5sDFAUq&categoryType=CODE 풀이 방법 #include #include int main() { int n{0}; std::cin>>n; for(int testCase =1;testCase input; if(input%2==1) sum+=input; } std::cout
2071. 평균값 구하기문제출처:https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QRnJqA5cDFAUq&categoryId=AV5QRnJqA5cDFAUq&categoryType=CODE 풀이 방법 #include #include int main() { int n{0}; std::cin>>n; for(int testCase =1;testCase input; sum +=input; } std::cout
2070. 큰 놈, 작은 놈, 같은 놈문제출처: https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QQ6qqA40DFAUq&categoryId=AV5QQ6qqA40DFAUq&categoryType=CODE 풀이 방법 #include int main() { int n{0}; std::cin>>n; for(int testCase =1;testCase >input1>>input2; if(input1>input2) std::cout
2068. 최대수 구하기문제출처: https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QQhbqA4QDFAUq&categoryId=AV5QQhbqA4QDFAUq&categoryType=CODE 풀이 방법 #include int main() { int n{0}; std::cin>>n; for(int testCase =1;testCase input; if(max
2063. 중간값 찾기문제출처: https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QPsXKA2UDFAUq&categoryId=AV5QPsXKA2UDFAUq&categoryType=CODE 풀이 방법보통은 std::sort를 활용하여 정렬을 하지만 qsort를 활용하여 풀어보았다. #include #include int compare(const void *a, const void *b) // 오름차순 비교 함수 구현 { int num1 = *(int *)a; // void 포인터를 int 포인터로 변환한 뒤 역참조하여 값을 가져옴 int num2 = *(int *)b; // void 포인터를 int 포인터..
2058. 자릿수 더하기문제출처: https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QPRjqA10DFAUq&categoryId=AV5QPRjqA10DFAUq&categoryType=CODE 풀이 방법 #include int main() { int input{0}; int sum{0}; std::cin>>input; for(int i=0;i
2056. 연월일 달력문제출처:https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QLkdKAz4DFAUq&categoryId=AV5QLkdKAz4DFAUq&categoryType=CODE 풀이 방법 #include int main() { int n{0}; std::cin>>n; for(int testCase =1 ; testCase>input; int year = input / 10000; input = input - (year * 10000); int month = input / 100; input = input%100; if(month 12) isValid =false; switch(month) { c..
2050. 알파벳을 숫자로 변환문제출처: https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QLGxKAzQDFAUq&categoryId=AV5QLGxKAzQDFAUq&categoryType=CODE 풀이 방법 #include #include int main() { char input[200 +1]; std::cin>>input; int length = strlen(input); for(int i=0;i