Sunny Archive ☀️
본문 바로가기

전체 글121

cpp) 백준 1929: 소수 구하기 Problem https://www.acmicpc.net/problem/1929 1929번: 소수 구하기 첫째 줄에 자연수 M과 N이 빈 칸을 사이에 두고 주어진다. (1 ≤ M ≤ N ≤ 1,000,000) M이상 N이하의 소수가 하나 이상 있는 입력만 주어진다. www.acmicpc.net M이상 N이하의 소수를 모두 출력하시오. Solution #include using namespace std; int arr[1000001]; void Primesieve(int m, int n){ // 배열 초기화 for(int i=2;i 2023. 6. 8.
cpp) 백준 11005: 진법 변환 2 Problem https://www.acmicpc.net/problem/11005 11005번: 진법 변환 2 10진법 수 N이 주어진다. 이 수를 B진법으로 바꿔 출력하는 프로그램을 작성하시오. 10진법을 넘어가는 진법은 숫자로 표시할 수 없는 자리가 있다. 이런 경우에는 다음과 같이 알파벳 대문자를 www.acmicpc.net 10진법 수 N이 주어질 때, 이 수를 B진법으로 바꿔서 출력하시오. (A: 10, B: 11, ..., F: 15, ..., Y: 34, Z: 35) Solution #include #include #include using namespace std; int main(){ int N; // 10진법 수 int B; // B진법 cin >> N >> B; int tmp; int.. 2023. 6. 8.
cpp) 백준 2745: 진법 변환 Problem https://www.acmicpc.net/problem/2745 2745번: 진법 변환 B진법 수 N이 주어진다. 이 수를 10진법으로 바꿔 출력하는 프로그램을 작성하시오. 10진법을 넘어가는 진법은 숫자로 표시할 수 없는 자리가 있다. 이런 경우에는 다음과 같이 알파벳 대문자를 www.acmicpc.net B진법 수 N이 주어진다. N을 10진법으로 바꾸시오. Solution #include #include #include using namespace std; int main(){ string N; int B; int result=0; int cnt=0; cin >> N >> B; for(int i=N.length()-1;i>=0;i--){ if(N[i]>='0' && N[i] 2023. 6. 7.
cpp) 백준 1157: 단어 공부 Problem https://www.acmicpc.net/problem/1157 1157번: 단어 공부 알파벳 대소문자로 된 단어가 주어지면, 이 단어에서 가장 많이 사용된 알파벳이 무엇인지 알아내는 프로그램을 작성하시오. 단, 대문자와 소문자를 구분하지 않는다. www.acmicpc.net 알파벳 대소문자로 된 단어가 주어질 때, 이 단어에서 가장 많이 사용된 알파벳을 출력한다. 가장 많이 사용된 알파벳이 여러 개 존재하는 경우 '?'를 출력한다. 대문자와 소문자를 구분하지 않는다. Solution #include #include #include using namespace std; int main(){ ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); int a.. 2023. 6. 7.
Aware - 항상 내 주변 상황을 정확하게 바라보려고 노력하자.- 정신적으로 깨어있는 상태를 유지하자. - 과거에 연연하지 말자.- 현재를 충실하게 살자.- 미래를 꿈꾸며 살아가자.- 지금보다 상황이 더 좋아질 수 있음을 기억하자.- 기회를 잡을 수 있도록 도전과 성장을 멈추지 말자.- 부족한 점은 인정하고 나아지려고 노력하자.- 자신과든 타인과든 잘 지내고 상황에 맞게 타협하자. 2023. 6. 7.
[NPR] 제프리 힌턴 교수, AI 기술의 위험성에 대해 경고하다. Main Point 💡 Geoffrey Hinton is known as the godfather of artificial intelligence. He helped create some of the most significant tools in the field. But now he's warning loudly that the technology may be getting out of hand. HINTON: These things could get more intelligent than us and could decide to take over, and we need to worry now about how we prevent that happening. I thought for a long tim.. 2023. 6. 6.