일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 파이썬
- 설명
- C 언어
- implement
- 심화1
- 구현
- 코드엔진
- 꾸준히
- C Programming
- Implemention
- greedy
- 10807
- VS
- Python
- Beakjoon
- c언어
- 초보
- 알고리즘
- 친절한 설명
- HTML
- CSS
- 10926
- 그리디
- Baekjoon
- 문자열
- 백준
- 문제풀이
- 정리
- C
- 입문
- Today
- Total
목록백준 (157)
안경잡이 구루루
https://www.acmicpc.net/problem/1157 나: word = input() ws = word.lower() a = sorted(set(ws)) alpha= [] high = 0 ouput = 0 for i in a: if ws.count(i) >= high: high = ws.count(i) alpha.append(high) output = i else: pass if alpha.count(max(alpha)) >= 2: print('?') else: print(output.upper()) 완성된 코드는 위와 같다. word = input() ws = word.lower() a = sorted(set(ws)) alpha= [] high = 0 ouput = 0 대소문자로 이루어진 ..
https://www.acmicpc.net/problem/2675 나: T = int(input()) for i in range(T): R,S = input().split() s='' for i in range(len(S)): s += S[i]*int(R) print(s) 완성된 코드는 위와 같다. T = int(input()) for i in range(T): R,S = input().split() s='' 테스트 케이스를 결정하는 변수 T에 입력값을 받는다. 그 입력값 만큼 반복문 For을 통해서 반복횟수 R과, 문자열 S를 받는다. 이때 반복으로 새롭게 만들어진 문자열이 들어갈 변수 s 를 문자열을 더할 수 있도록 ''로 초기화 시켰다. for i in range(len(S)): s += S[i]*..
https://www.acmicpc.net/problem/3052 나: #include int main() { int cnt = 0; int num[10]; for (int i = 0; i < 10; i++) { scanf_s("%d", &num[i]); num[i] = num[i] % 42; } for (int j = 0; j < 10; j++) { for (int k = j + 1; k < 10; k++) { if (num[j] == -1)break; if (num[j] == num[k]) num[k] = -1; } } for (int i = 0; i < 10; i++) { if (num[i] != -1) cnt++; } printf("%d", cnt); } 완성된 코드는 위와 같다. #include..
https://www.acmicpc.net/problem/10809 나: S = input() abc ='abcdefghijklmnopqrstuvwxyz' for i in abc: if i in S: print(S.index(i), end= ' ') else: print( -1, end =' ') 완성된 코드는 위와 같다. S = input() abc ='abcdefghijklmnopqrstuvwxyz' 우선 단어를 입력받을 변수 S를 선언. 그리고 이따 반복문으로 알파벳의 존재 유무를 확인하기 위해 사용할 알파벳들이 존재하는 abc 선언 for i in abc: if i in S: print(S.index(i), end= ' ') else: print( -1, end =' ') 우리가 입력한 S에 알파..