본문 바로가기

d25

[SWEA] 1288. 새로운 불면증 치료법 https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV18_yw6I9MCFAZN&categoryId=AV18_yw6I9MCFAZN&categoryType=CODE&&& SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! www.swexpertacademy.com vector의 사이즈가 10(0~9)이 될 때까지 숫자를 증가시키면서 string으로 바꾸고 index를 돌며 각 자리의 수를 구해 vector에 중복되지 않게 삽입했다. #include #include #include #include #include using namespace std; int T, N;.. 2019. 4. 25.
[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.