BEAKJOON 96

백준(1157번 단어 공부)풀이 C++

www.acmicpc.net/problem/1157 1157번: 단어 공부 알파벳 대소문자로 된 단어가 주어지면, 이 단어에서 가장 많이 사용된 알파벳이 무엇인지 알아내는 프로그램을 작성하시오. 단, 대문자와 소문자를 구분하지 않는다. www.acmicpc.net 1) 주석 없는 VERSION #include #include using namespace std; int main() { string s; cin >> s; int array[26] = { 0, }; for (int i = 0;i < s.length();i++) { if (s[i] < 97) array[s[i] - 65]++; else array[s[i] - 97]++; } int max = 0; int index = 0; for (int i..

BEAKJOON 2021.01.09

백준(2675번 문자열 반복)풀이 C++

www.acmicpc.net/problem/2675 2675번: 문자열 반복 문자열 S를 입력받은 후에, 각 문자를 R번 반복해 새 문자열 P를 만든 후 출력하는 프로그램을 작성하시오. 즉, 첫 번째 문자를 R번 반복하고, 두 번째 문자를 R번 반복하는 식으로 P를 만들면 된다 www.acmicpc.net 1) 주석 없는 VERSION #include #include using namespace std; int main() { int t, r; string s; cin >> t; for (int i = 0;i > r >> s; for (int i = 0;i < s.size();i++) { for (int j = 0;j < r;j++) { cout t; // 테스트 케이스 개수..

BEAKJOON 2021.01.09

백준(10809번 알파벳 찾기)풀이 C++

www.acmicpc.net/problem/10809 10809번: 알파벳 찾기 각각의 알파벳에 대해서, a가 처음 등장하는 위치, b가 처음 등장하는 위치, ... z가 처음 등장하는 위치를 공백으로 구분해서 출력한다. 만약, 어떤 알파벳이 단어에 포함되어 있지 않다면 -1을 출 www.acmicpc.net 1) 주석 없는 VERSION #include #include using namespace std; int main() { int n, array[26]; string str; cin >> str; for (int i = 0;i < 26;i++) { array[i] = -1; } for (int i = 0;i < str.length();i++) { n = str[i] - 97; if (array[n..

BEAKJOON 2021.01.09

백준(11720번 숫자의 합)풀이 C++

www.acmicpc.net/problem/11720 11720번: 숫자의 합 첫째 줄에 숫자의 개수 N (1 ≤ N ≤ 100)이 주어진다. 둘째 줄에 숫자 N개가 공백없이 주어진다. www.acmicpc.net 1) 주석없는 VERSION #include using namespace std; int main() { int n; cin >> n; char num; cin.get(); int temp; int ans = 0; for (int i = 0;i < n;i++) { cin.get(num); temp = num - '0'; ans += temp; } cout n; // test case의 수 char num; // 숫자를 문자로 받아옴 cin.get(); // 마지막에 "\n" 개행문자 입력을 없..

BEAKJOON 2020.12.07

백준(1065번 한수)풀이 C++

www.acmicpc.net/problem/1065 1065번: 한수 어떤 양의 정수 X의 각 자리가 등차수열을 이룬다면, 그 수를 한수라고 한다. 등차수열은 연속된 두 개의 수의 차이가 일정한 수열을 말한다. N이 주어졌을 때, 1보다 크거나 같고, N보다 작거나 www.acmicpc.net ❌100보다 작은 값은 무조건 한수이다. 1) 주석없는 VERSION #include using namespace std; int checkMatch(int n); int main() { int n; cin >> n; int ans = 0; for (int i = 1; i n; int ans = 0; for (int i = 1; i

BEAKJOON 2020.12.06

백준(4673번 셀프 넘버)풀이 C++

www.acmicpc.net/problem/4673 4673번: 셀프 넘버 셀프 넘버는 1949년 인도 수학자 D.R. Kaprekar가 이름 붙였다. 양의 정수 n에 대해서 d(n)을 n과 n의 각 자리수를 더하는 함수라고 정의하자. 예를 들어, d(75) = 75+7+5 = 87이다. 양의 정수 n이 주어졌을 때, www.acmicpc.net 1) 주석없는 VERSION #include using namespace std; int main() { int array[10000] = { 1, }; int n; for (int i = 1;i < 10000;i++) { if (i < 10) { array[i + i] = 1; continue; } else if (i < 100) { array[i + i / ..

BEAKJOON 2020.12.06

백준(15596번 정수 N개의 합)풀이 C++

www.acmicpc.net/problem/15596 15596번: 정수 N개의 합 C++17, Java 8, Python 3, C11, PyPy3, C99, C++98, C++11, C++14, Python 2, PyPy2, Go, C99 (Clang), C++98 (Clang), C++11 (Clang), C++14 (Clang), C11 (Clang), C++17 (Clang) www.acmicpc.net #include using namespace std; long long sum(std::vector& a) { long long ans = 0; for (int i = 0;i < a.size();i++) { ans += a[i]; } return ans; } ❌주의사항❌ ◾ a를 배열로 사용 ◾ ..

BEAKJOON 2020.12.06

백준(4344번 평균은 넘겠지)풀이 C++

www.acmicpc.net/problem/4344 4344번: 평균은 넘겠지 대학생 새내기들의 90%는 자신이 반에서 평균은 넘는다고 생각한다. 당신은 그들에게 슬픈 진실을 알려줘야 한다. www.acmicpc.net 1) 주석없는 VERSION #include using namespace std; int main() { int c; cin >> c; double result; int score[1000] = { 0 }; for (int i = 0;i > n; int sum = 0; for (int j = 0;j > score[j]; sum += score[j]; } int avg = sum / n; int count = 0; for..

BEAKJOON 2020.12.05

백준(8958번 OX퀴즈)풀이 C++

www.acmicpc.net/problem/8958 8958번: OX퀴즈 "OOXXOXXOOO"와 같은 OX퀴즈의 결과가 있다. O는 문제를 맞은 것이고, X는 문제를 틀린 것이다. 문제를 맞은 경우 그 문제의 점수는 그 문제까지 연속된 O의 개수가 된다. 예를 들어, 10번 문제의 점수 www.acmicpc.net 1) 주석없는 VERSION #include using namespace std; int main() { int n; cin >> n; string s; for (int i = 0;i > s; int score = 0; int count = 0; for (int j = 0;j < s.length();j++) { if (s[j] == 'O') count++; els..

BEAKJOON 2020.12.05