-
백준 15873번: 공백 없는 A+B구현(Implementation) 2018. 7. 29. 12:37반응형
https://www.acmicpc.net/problem/15873
1. 문제
문자열로 접근해서 풀었는데 10의 배수를 이용해도 풀수 있는 문제다. 다음엔 수학적으로 풀어 보도록..
2. 알고리즘
키워드 - 구현, 문자열
3. 코드
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556#include <iostream>#include <sstream>#include <string>#include <algorithm>#include <functional>#include <vector>#include <list>#include <queue>#include <deque>#include <map>#include <set>#include <stack>#include <math.h>#include <memory.h>using namespace std;#define MAX_SIZE 100#define INF 0x7fffffff#define CENDL "\n"#define ll long longint main() {cin.tie(0);std::ios::sync_with_stdio(false);string s; cin >> s;const int size = s.size();int sol = 0;switch(size) {case 2:sol = s[0] - '0' + s[1] - '0';break;case 3:if ((s[1] - '0') == 0) {sol = 10 + s[2] - '0';} else {sol = 10 + s[0] - '0';}break;case 4:sol = 20;break;}cout << sol << CENDL;return 0;}cs 반응형'구현(Implementation)' 카테고리의 다른 글
백준 2909번: 캔디 구매 (0) 2018.07.29 백준 15894번: 수학은 체육과목 입니다 (0) 2018.07.29 백준 15784번: 질투진서 (0) 2018.07.29 백준 15780번: 멀티탭 충분하니? (0) 2018.07.29 백준 15727번: 조별과제를 하려는데 조장이 사라졌다 (0) 2018.07.29