본문 바로가기

SWExpertAcademy4

[SWEA] 1926. 간단한 369게임 https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PTeo6AHUDFAUq&categoryId=AV5PTeo6AHUDFAUq&categoryType=CODE SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! www.swexpertacademy.com 정수를 문자열로 바꿔주는 to_string() 함수를 알고 있어야 풀 수 있는 문제이다. * string to int, int to string 변환 함수 string to int int to string atoi(char*) to_string(int) string str = "123"; int num = at.. 2019. 4. 17.
[SWEA] 2005. 파스칼의 삼각형 https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5P0-h6Ak4DFAUq&categoryId=AV5P0-h6Ak4DFAUq&categoryType=CODE SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! www.swexpertacademy.com 파스칼의 삼각형 규칙인 '두 번째 줄부터 각 숫자들은 자신의 왼쪽과 오른쪽 위의 숫자의 합으로 구성된다.'를 코드로 표현하면 된다. #include #include using namespace std; int T, N, triangle[10][10]; void initializeTriangle();// tria.. 2019. 4. 17.
[SWEA] 1940. 가랏! RC카! https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PjMgaALgDFAUq&categoryId=AV5PjMgaALgDFAUq&categoryType=CODE&&& SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! www.swexpertacademy.com #include #include using namespace std; int T, N, command, speed; int currentSpeed, currentDistance; void getDistance(); int main() { cin.tie(0); ios::sync_with_stdio(0); c.. 2019. 4. 17.
[SWEA] 2001. 파리 퇴치 https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PzOCKAigDFAUq&categoryId=AV5PzOCKAigDFAUq&categoryType=CODE SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! www.swexpertacademy.com #include #include #include using namespace std; int T, N, M, result; int map[15][15]; int getResult(); int getFliesCnt(int startY, int startX); int main() { cin.tie(0); ios::.. 2019. 4. 16.