일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Implemention
- Beakjoon
- 파이썬
- HTML
- implement
- CSS
- 입문
- 심화1
- 설명
- VS
- 초보
- C Programming
- C 언어
- 문자열
- 문제풀이
- 코드엔진
- 구현
- greedy
- Baekjoon
- 친절한 설명
- Python
- c언어
- 그리디
- 꾸준히
- 알고리즘
- 10807
- C
- 정리
- 10926
- 백준
- Today
- Total
목록꾸준히 (86)
안경잡이 구루루
https://www.acmicpc.net/problem/10162 10162번: 전자레인지 3개의 시간조절용 버튼 A B C가 달린 전자레인지가 있다. 각 버튼마다 일정한 시간이 지정되어 있어 해당 버튼을 한번 누를 때마다 그 시간이 동작시간에 더해진다. 버튼 A, B, C에 지정된 시간은 www.acmicpc.net 나: T = int(input()) buttons = [300,60,10] result = [] count = 0 for button in buttons: count = T//button result.append(count) T = T%button if T == 0: print(*result) else: print(-1) 완성된 코드는 위와 같다. (1) T = int(input()) b..
https://www.acmicpc.net/problem/5073 5073번: 삼각형과 세 변 각 입력에 맞는 결과 (Equilateral, Isosceles, Scalene, Invalid) 를 출력하시오. www.acmicpc.net 나: while True: box = list(map(int,input().split(' '))) a,b,c= sorted(box,reverse=True) if a==0 and b==0 and c==0: break elif (a
https://www.acmicpc.net/problem/10101 10101번: 삼각형 외우기문제의 설명에 따라 Equilateral, Isosceles, Scalene, Error 중 하나를 출력한다.www.acmicpc.net 나:angles=[] totall =0 for i in range(3): angle = int(input()) totall +=angle angles.append(angle) no_dup = set(angles) if totall != 180: print('Error') else: if len(no_dup) ==3: print('Scalene') if len(no_dup) ==2: print('Isosceles') if len(no_dup) ==1: print('Equilat..
https://www.acmicpc.net/problem/9063 9063번: 대지 첫째 줄에는 점의 개수 N (1 ≤ N ≤ 100,000) 이 주어진다. 이어지는 N 줄에는 각 점의 좌표가 두 개의 정수로 한 줄에 하나씩 주어진다. 각각의 좌표는 -10,000 이상 10,000 이하의 정수이다. www.acmicpc.net 나: N = int(input()) X =[] Y =[] for i in range(N): x,y = map(int,input().split()) X.append(x) Y.append(y) print((max(X)-min(X))*(max(Y)-min(Y))) 완성된 코드는 위와 같다. 문제가 이전과 다르게 매우 길어 살짝 당황했으나 대부분의 내용이 그저 문제를 위한 스토리일 뿐 실..