Algorithm
BOJ 1475 방 번호 c++
BOJ 1475 방 번호 c++ 백준 1475 방 번호 c++ #include using namespace std; int n; string line; int arr[256]; int main() { ios::sync_with_stdio(0); cin.tie(0); cin >> n; line = to_string(n); for (char c: line) arr[(int)c]++; char c = '6'; int six = arr[(int)c]; arr[(int)c] = 0; arr[(int)c+3] += six; bool isOdd = arr[(int)c + 3] % 2 == 1 ? true : false; arr[(int)c+3] = (arr[(int)c+3]) / 2; if (isOdd..
2020. 8. 15. 17:39
최근댓글